Search Results

Type: Posts; User: Antonio09

Page 1 of 2 1 2
Search took 0.01 seconds.
  1. That's it, thank you!
  2. Hello, I have a combobox that has many values so the dropdown list is so big. I need to set a limit to the size of the dropdown list. I have been loking for the way to solve this but I can't find the...
  3. Ok, I don't know why but the hidden textfield solved the problem. Thank you!
  4. Hi, I've looking for but I can't find it, What is the default typography of Ext.NET?

    Is there an easy way of change it once (font-family, font-size, font-color) applying to the whole system?
  5. Yes, you can.
  6. Excellent! Thank you very much.
  7. Hi, I build a treepanel dinamically from the database:


    Dim OpcionInf2 = From m In BD.ZMenus Where m.Modulo = ModuloID Order By m.Orden
    For Each opc In OpcionInf2
    ...
  8. That's it! Thank you.


    var onCheckChange = function (node, checked) {
    if (!this.locked) {
    this.locked = true;

    if (node.hasChildNodes()) {
    ...
  9. Is there an alternative to solve this?
  10. I tried it and it's still loading slow.

    Now I'm proving with


    grid.ColumnModel.Columns.Add(...)

    And it loads fast! But I have to use
  11. I'm not loading records yet, because just adding columns it's too slow.

    I call posted code during ajax request when the gridpanel is already rendered.

    Should I build the entire grid in code...
  12. I add columns to a gridpanel in server side:


    doc.Load(Server.MapPath("Puestos.xml"))
    Dim contador As Integer = 0
    Dim ID As String = "", Texto As String = ""
    For...
  13. That's it! I have already seen that example but I can't see the solution in that moment.

    Thank you.
  14. Hi, I think you missed this part:
  15. thanks! I solved it by adding this listener to the ComponentColumn:


    <Listeners>
    <Bind Fn="ConfigComent">
    </Bind>
    </Listeners>
    </ext:ComponentColumn>
  16. Thank you Daniil, it works perfect! I just added the case sensitive flag and that's it!


    new RegExp(q, 'i')
  17. I have a Gridpanel with a Componentcolumn:


    <ext:ComponentColumn ID="ComponentColumnComentarios"
    runat="server"
    Editor="true"
    DataIndex="Coment"
    Flex="1"
    Text="Comentarios">
    <Component>
  18. Thank you! It seems like @blueworld solution works fine
  19. I build a gridpanel in code behind and when I add some imagecommand and command columns with gridcommands, some icons are displayed correctly but other doesn't:


    Dim colBol As New CommandColumn...
  20. Hi,

    I'm trying to implement rows reordering like in this example, it works fine but when I try to save the changes in the database, I don't know how to do it, because I can't loop the gridpanel or...
Results 1 to 25 of 45
Page 1 of 2 1 2