jQWidgets Forums

Forum Replies Created

Viewing 15 posts - 1 through 15 (of 15 total)
  • Author
    Posts
  • in reply to: Responsive Window.. Responsive Window.. #47869

    dev_pepper
    Participant

    OK i solved it this way.. $(“#ResponsiveWindow”).jqxWindow({
    width:”75%”,height: “75%”,maxWidth:”90%”,maxHeight:”90%”,resizable: false, theme: theme, isModal: true, autoOpen: false, });

    Is it legal?

    Thanks

    in reply to: Responsive Window.. Responsive Window.. #47862

    dev_pepper
    Participant

    OK Thanks Peter Stoev..I changed my plan..i need to display a window ,that uses 100% width and height of my screen..how can i do that….i have seen width,maxWidth,height,maxHeight properties of jqxwindow..which property i need to set for using full width and height of my window??..i used width property but is it impossible to set window’s width to value greater than 800…


    dev_pepper
    Participant

    Thanks Peter Stoev..It works

    in reply to: Grid Cell Editing Grid Cell Editing #46153

    dev_pepper
    Participant

    Ok Thank you Peter Stoev..I have fixed it..you people have done really great..

    in reply to: Grid Cell Editing Grid Cell Editing #46151

    dev_pepper
    Participant

    can you please tell me ,How can i set editor value after cell edit?

    Thanks

    in reply to: Grid Cell Editing Grid Cell Editing #46140

    dev_pepper
    Participant

    Ok here is my example.I need to set edited cell with a different value.

    $(“#itemIssueDetailsGrid”).jqxGrid({
    width: 300,
    height:369,
    source: dataAdapter,
    theme: theme,
    editable: true,
    selectionmode: ‘singlecell’,
    columns: [
    { text: ‘Item Name’, dataField: ‘itemName’,minwidth: 185, width: 185, editable: false},

    { text: ‘Current Issue’, datafield: ‘currentIssue’, width: 130 ,editable:true, cellsformat:”d”}
    ]

    });

    $(“#itemIssueDetailsGrid”).on(‘cellendedit’, function (event) {
    var column = args.datafield;
    var row = args.rowindex;
    var newvalue = args.value;
    var oldvalue = args.oldvalue;

    if(column==”currentIssue”){

    var sum=newvalue+oldvalue;
    $(“#itemIssueDetailsGrid”).jqxGrid(‘setcellvalue’, row , “currentIssue”, sum);//set edited cell with a different value,but this is not working

    }
    });

    in reply to: Grid cell drop down edit Grid cell drop down edit #32041

    dev_pepper
    Participant

    Great Thanks..It works for me..you people have done really great..

    Thanks.

    in reply to: Grid cell drop down edit Grid cell drop down edit #32021

    dev_pepper
    Participant

    Hi Peter Stoev.

    I added “displayfield” as my item name and “datafield” as my itemId but no use..iam trying with json..can you please give me an example with json?.

    Thank you..

    in reply to: Grid cell drop down edit Grid cell drop down edit #32010

    dev_pepper
    Participant

    Now I got id from my drop down key value pair set.but it has a problem.After i perform a cell edit,the cell vaue becomes id(like 1,2..) insted of item name (item1,item2..)

    { text: 'Item Name',columntype: 'template', datafield: 'itemName', width: 130, minwidth: 130,sortable:false,
    createeditor: function (row, cellvalue, editor, cellText, width, height) {
    // construct the editor.
    editor.jqxDropDownList({
    source: getEditorDataAdapter(itemName), displayMember: 'name', valueMember: 'id', width: width, height: height, theme: theme,
    });
    }
    },

    Can you help me to fix this?
    Thanks.

    in reply to: Grid cell drop down edit Grid cell drop down edit #31998

    dev_pepper
    Participant

    I have tried with json.check my first discussion.have i done anythig worg.My problem it does not return value member parameter.
    can you please help me to do it with json instead of array?

    in reply to: Grid cell drop down edit Grid cell drop down edit #31990

    dev_pepper
    Participant

    Is it not possible with json?.my grid is constructing from json.

    Thanks

    in reply to: Grig cell styling Grig cell styling #31297

    dev_pepper
    Participant

    Thank you very much.You people have done really great.

    in reply to: Spreadsheet view with json data Spreadsheet view with json data #29548

    dev_pepper
    Participant

    Thats ok ..Sorry it was my mistake..

    in reply to: Spreadsheet view with json data Spreadsheet view with json data #29546

    dev_pepper
    Participant

    OK Thank you Peter Stoev..

    How Can implement row doubleclick on my grid.

    Here is the code so far i hava tried.

    $(‘#servicesGrid’).on(‘rowdoubleclick’, function (event)
    {
    var args = event.args;
    var row = args.rowindex;
    alert(row);
    });

    It does’t generate anythig.Have i done any mistake?

    in reply to: Exapand top root item Exapand top root item #29357

    dev_pepper
    Participant

    Thank you Dimitar..It works

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