Questions tagged as 'devexpress'

0
answers

Problem with DevExpress Treelist

My problem is that my treelist does not do anything after I expand the nodes. This is my view @{ ViewBag.Title = "EstructuraFinanciera"; } @if (Session["username"] != null) { <text> Bienvenido @Session["username"].ToString()...
asked by 14.03.2018 / 17:04
0
answers

Display the contents of a gridlookedit while writing

Hi friend and I have a gridlookedit and I am working on vb.net with component in devexpress and I want to know how I do to display the list box when receiving the focus and close it when the focus is lost This way I charge the combo P...
asked by 22.02.2017 / 17:20
1
answer

Can I edit the header and footer of a ShowRibbonPrintPreview?

I am sending to print a GridView with the method .ShowRibbonPrintPreview , I can make the information of the header and footer of page be assigned by means of code, Example. string nomEmpresa = "Este es el nombre de la empresa";...
asked by 05.04.2016 / 23:13
3
answers

How to interleave 2 colors in rows of the DataGridView DevExpress? In C # .Net

I used the RowStyle event with the following code: private void dgvPersonalizadoInterior_RowStyle(object sender, RowStyleEventArgs e) { try { for (int i = 0; i < dgvPersonalizadoInterior.RowCo...
asked by 09.06.2017 / 17:29
1
answer

Object values in ASP are not updated

Hello, I am handling the following form in ASP : <tr> <td width="20%"> <dx:ASPxLabel runat="server" Text="Documento"></dx:ASPxLabel> </td> <td width="20%"> <dx:ASPxComboBox runat...
asked by 03.01.2017 / 19:07
1
answer

Show text in a TextBox of XtraUserControl

I have a GridControl in a form and a XtraUserControl , in the event DoubleClick of the grid I load some data to a textbox of XtraUserControl , it brings the data correctly but it does not show them. This is the method I use...
asked by 27.04.2016 / 23:22
1
answer

How to add the value that comes from the model to the textbox

Good I would like to know how to add the value that comes from the model to a textbox that is in the row of a table, in Devexpress this is the code that I have I need a line of code if I am not wrong it is something like content.Column...
asked by 16.08.2016 / 18:45
2
answers

Can I put the focus in a row of my gridview according to the code?

Dim dt As New DataTable Dim sql As String = "SELECT IdProd, Nombre, Precio FROM RE_ProdServ WHERE Codigo =" & lblCodProd.Text dt = SMT_AbrirTabla(Conexion, sql) Dim id As Integer id = Convert.ToInt16(dt.Rows.Item(0).Item(0)) If id = Conver...
asked by 12.05.2016 / 18:34
2
answers

Can I get the name of the selected skin devexpress?

Private Sub Principal_Load(sender As Object, e As EventArgs) Handles MyBase.Load DevExpress.UserSkins.BonusSkins.register() SkinHelper.InitSkinPopupMenu(SeleccionaSkin) End Sub so far, apply the skin in a normal way, I do not know if u...
asked by 30.04.2016 / 16:46
1
answer

Avoid the step to the previous form but has closed the current one, vb Devexpress

I have a form in which information is entered, it's like a pop-up window. There is some function that prevents me from using the previous form with just a click, the problem is that it is only clicked and remains open, I hope I have un...
asked by 19.04.2016 / 21:33