Show Posts

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.


Messages - dnk

Pages: [1]
1
Solved! but....
This not worked - , editModel: { clicksToEdit: 1, saveKey: $.ui.keyCode.ENTER,  uponSave: 'next' }
this worked - , editModel: { clicksToEdit: 1, saveKey: $.ui.keyCode.ENTER,  uponSave: 'next',
                    onBlur: 'validate', allowInvalid: false, invalidClass: 'pq-cell-red-tr pq-has-tooltip', warnClass: 'pq-cell-blue-tr pq-has-tooltip',
                    validate: true }


2
   , { title: "Begin", width: "20%", dataType: "string", dataIndx: "begin",
                    editor: {
                                type: "select",
                                valueIndx: "id",
                                labelIndx: "text",
                                mapIndices: { id: "beginMonthID", text: "begin"},
                                options: [],
                                init: function (ui) {
                                                        ui.$cell.find("select").pqSelect();
                                                    }
                            }
                    , validations: [
                        { type: 'minLen', value: 1, msg: "Required"}
                        ,{
                            type: function(ui) {
                              debugger;  // not go in this line
                              let value = ui.value,
                              checked = false;
                              if (value === null || value.len === 0)
                                  {
                                      ui.message = "Сould not be restricted empty value !"
                                  }
                              else
                                  {
                                      checked = true;
                                  }
                              return checked;
                            }
                        }
                        ]       

Pages: [1]