jQWidgets Forums
Forum Replies Created
-
Author
-
May 27, 2014 at 8:56 pm in reply to: is Unique column property avaliable and how? is Unique column property avaliable and how? #54989
Dimitar Hi;
Thanks for your reply.
Shortly, We need a property such as this :
We have a table. The table has a some unique column. For example, the column that named “code” is unique. But We cannot control column value before write to database. If you provide a unique column property, we will check this value validate or not before Model/Backend operation.For example. We have a table like this :
code – value
_________________
a – b
c – dIf I enter “a” value for code column again, Grid should throw an error. “This column should be included unique value”…
May 8, 2014 at 11:28 am in reply to: How can I fire row double click event? How can I fire row double click event? #54188Hi again;
I solved this problem such as this :var event = new MouseEvent('rowdoubleclick', { 'view': window, 'bubbles': true, 'cancelable': true }); document.getElementById(currentGridId).dispatchEvent(event);
Regards.
April 24, 2014 at 12:34 pm in reply to: Is Jqxgrid comportable for inline data entry? Is Jqxgrid comportable for inline data entry? #53545It is not debugging or test. I gave it because of you can see.
April 24, 2014 at 12:25 pm in reply to: Is Jqxgrid comportable for inline data entry? Is Jqxgrid comportable for inline data entry? #53543Hi Peter;
If you wish, I can send remote connection information of our system as private message or email.
I have your mail adress. Can I send as email?April 24, 2014 at 12:00 pm in reply to: Is Jqxgrid comportable for inline data entry? Is Jqxgrid comportable for inline data entry? #53541Yes.. We are developing a web based MRP program. We are using your grid. We’re having trouble. For example, WE develop a program using grids that have one-to-many relations.
We think your combobox column type has some bugs.
Actually, We want our users to experience windows forms grid.
If you wish, you can examine our code.April 15, 2014 at 8:19 am in reply to: Tab key problem in last column in a row Tab key problem in last column in a row #53093Yes column is last but row is not last.
We add dynamically row. And return first row. So, when press tab key on first row and last column; it focus another element in out of grid.April 8, 2014 at 8:30 am in reply to: Scroll grid when keyboard navigation. Scroll grid when keyboard navigation. #52691Hi Peter;
Unfortunately, It does not work. The keys can be use for navigation but scrollbar does not scroll when keyboard navigation.April 8, 2014 at 7:07 am in reply to: Scroll grid when keyboard navigation. Scroll grid when keyboard navigation. #52682Peter;
Thanks for your answer. We use horizontal scrollbar. Are there any example about this?March 21, 2014 at 7:24 am in reply to: Label-value problem when using combobox in Grid. Label-value problem when using combobox in Grid. #51544The expected answer thank you Peter.
It works fine.March 20, 2014 at 10:14 am in reply to: Label-value problem when using combobox in Grid. Label-value problem when using combobox in Grid. #51486Peter,
I am sorry so, I could not tell completely.
When we create combobox in createeditor function, it works, but the combobox returns id (valueMember, not displayMember) as cellvalue. Cellvalue takes “id” (valueMember of combobox) after cell end edit.
I think, this is a bug.March 19, 2014 at 12:38 pm in reply to: Label-value problem when using combobox in Grid. Label-value problem when using combobox in Grid. #51396I am sorry. I did not work. We tried same solution. We are using your grid with Knockout together.
March 19, 2014 at 11:35 am in reply to: Label-value problem when using combobox in Grid. Label-value problem when using combobox in Grid. #51389We could not keyboard navigation in dropdownlist, and combobox showed only valueMember when it blured.
March 19, 2014 at 11:25 am in reply to: Label-value problem when using combobox in Grid. Label-value problem when using combobox in Grid. #51387Hi again,
Thanks for your answer.
We create and edit some columns programatically.`columns[value[“columnIndex”]].createeditor= function (row, cellvalue, editor) {
parent.globalEditor = editor;
editor.jqxComboBox({
source: value[“elements”],
displayMember: ‘code’,
valueMember: ‘id’,
autoComplete: true,
enableSelection:true,
autoOpen:true,
enableBrowserBoundsDetection:true
});
});It works, but, when we blur the element, Element shows valueMember, not displayMember.
March 19, 2014 at 11:05 am in reply to: Label-value problem when using combobox in Grid. Label-value problem when using combobox in Grid. #51381But this is not combobox. This is dropdownlist element.
March 19, 2014 at 9:29 am in reply to: Enable the Keyboard Navigation Enable the Keyboard Navigation #51375Dear Peter;
You’re right but We see your example. You create dropdown column without createeditor function and bind it. We could not do it.
So, I prepared this presentation and shared you. -
AuthorPosts