jQWidgets Forums

Forum Replies Created

Viewing 6 posts - 1 through 6 (of 6 total)
  • Author
    Posts

  • Aamer
    Member

    Hi Peter,

    Thanks for the reply.

    My requirement is to change the color of the whole row where the Status column has value P. Cellrenderer applies to one cell at a time and the status column is the last column in the grid. When the rendering reaches at that column it changes the color of the value in that columns. I am looking for a rowrenderer kind of a renderer

    Thanks


    Aamer
    Member

    Hi Dimitar,

    It is working now. The way I wrote my code is to define all the widgets, the way they appear on the web page i.e. Menu, Combo Box and then the Panel. After this I had tool tip definitions and the tool tip for combo box was not working. Once I moved the Combo Box tool tip definition right after the Combo Box definition, just like you mentioned in your example above, it started appearing.

    Thanks for the help.

    in reply to: How to post back listbox How to post back listbox #18172

    Aamer
    Member

    I was able to write the function. Here is the code

    $(“#saveCategory”).click (function() {
    var items = $(“#jqxlistbox”).jqxListBox(‘getItems’);
    var length = items.length;
    var mylist = [];
    for (var i = 0; i < length; i++) {
    var row = [];
    row["cname"] = items[i].value;
    row["cvalue"] = items[i].label;
    mylist[i] = row;
    }
    console.log(mylist);
    //console.log(mylist);
    $('#myCatgories').value = mylist;
    });

    here is the HTML

    <div><input type="hidden" name="myCatgories[]" id="myCatgories"></div>

    I checked on the console and data is there but there is empty array in the POST. What am I doing wrong?

    Thanks

    in reply to: How to post back listbox How to post back listbox #18148

    Aamer
    Member

    in reply to: How to post back listbox How to post back listbox #18147

    Aamer
    Member

    here is the html. I don’t know what happened witht the orginal one

    Thanks

    in reply to: How to post back listbox How to post back listbox #18116

    Aamer
    Member

    Hi Peter,

    Thanks for the quick response. I was able to build the array but struggling it in submitting using a hidden input.

    here is java script code

    $(“#saveCategory”).jqxButton();
    $(“#saveCategory”).click (function() {
    var items = $(“#jqxlistbox”).jqxListBox(‘getItems’);
    var length = items.length;
    var mylist = new Array();
    for (var i = 0; i < length; i++) {
    var row = {};
    row["cname"] = items[i].value;
    row["cvalue"] – items[i].label;
    mylist[i] = row;
    }

    here is html

    how can I link it

    Thanks

Viewing 6 posts - 1 through 6 (of 6 total)