EXTJS Problem with date field please help - json
i'm having trouble trying to figure out how this is happening. i'm using Extjs and AJAX with JsonStore from my callback my page in ASP call the database and return some fields in this fields there is a Date and this date return the proper date ex.: "date_creat_post": "29\u002F04\u002F2011"...
Now once i look at my output from this in my page in a datagrid i'm getting the following:
04/05/2013 <----> the date it return in the callback is 04/05/2011
06/05/2012 <----> the date it return in the callback is 06/05/2010
07/04/2012 <----> the date it return in the callback is 07/04/2010
I looked all threw my code to see if they're is a place where i am adding 1 year to the date.
but can't find it. i have been trying now for at least 2 days to figure this out.
Here's my code:
Ext.onReady(function(){
Ext.QuickTips.init();
// for this demo configure local and remote urls for demo purposes
var url = {
local: '', // static data file
remote: '../myurl.asp'
};
// configure whether filter query is encoded or not (initially)
var encode = true;
// configure whether filtering is performed locally or remotely (initially)
var local = false;
var PostStore = new Ext.data.JsonStore({
// store configs
autoDestroy: true,
baseParams : {filter : '[{"type":"boolean","value":false,"field":"is_sent_post"}]'},// we start only with is_sent == false
url: url.remote,
remoteSort: false,
sortInfo: {
field: 'date_creat_post',
direction: 'DESC'
},
storeId: 'Post_Store',
// reader configs
idProperty: 'id_post',
root: 'Post',
totalProperty: 'totalcount',
fields: [{
name: 'id_post',
type: 'number'
}, {
name: 'name_post',
type: 'string'
}, {
name: 'date_creat_post',
type: 'date'//,
//dateFormat: 'Y-m-d H:i:s'
}, {
name: 'from_addr_post',
type: 'string'
}, {
name: 'sender_name_post',
type: 'string'
}, {
name: 'is_sent_post',
type: 'boolean'
}, {
name: 'date_sending_post',
type: 'date'//,
//dateFormat: 'Y-m-d H:i:s'
}, {
name: 'html_post',
type: 'string'
}, {
name: 'list_send_post',
type: 'number'
}],
writer: new Ext.data.JsonWriter({
writeAllFields: true
}),
autoSave: false,
batch: true
});
var filters = new Ext.ux.grid.GridFilters({
// encode and local configuration options defined previously for easier reuse
encode: encode, // json encode the filter query
local: local, // defaults to false (remote filtering)
filters: [{
type: 'numeric',
dataIndex: 'id_post'
}, {
type: 'string',
dataIndex: 'name_post'
}, {
type: 'date',
dataIndex: 'date_creat_post'
}, {
type: 'string',
dataIndex: 'from_addr_post'
}, {
type: 'string',
dataIndex: 'sender_name_post'
}, {
type: 'boolean',
dataIndex: 'is_sent_post'
}, {
type: 'date',
dataIndex: 'date_sending_post'
}, {
type: 'string',
dataIndex: 'html_post'
}, {
type: 'numeric',
dataIndex: 'list_send_post'
}]
});
// use a factory method to reduce code while demonstrating
// that the GridFilter plugin may be configured with or without
// the filter types (the filters may be specified on the column model
var createColModel = function (finish, start) {
var columns = [{
dataIndex: 'id_post',
hidden:true,
header: 'Id',
// instead of specifying filter config just specify filterable=true
// to use store's field's type property (if type property not
// explicitly specified in store config it will be 'auto' which
// GridFilters will assume to be 'StringFilter'
filterable: true
//,filter: {type: 'numeric'}
}, {
dataIndex: 'name_post',
header: 'Subject',
width: 150,
id: 'postname',
filter: {
type: 'string'
// specify disabled to disable the filter menu
//, disabled: true
}
}, {
dataIndex: 'date_creat_post',
header: 'Date Created',
renderer: Ext.util.Format.dateRenderer('d/m/Y'),
filter: {
type: 'date' // specify type here or in store fields config
}
}, {
dataIndex: 'from_addr_post',
header: 'From Address',
hidden:true,
id: 'fromaddress',
filter: {
type: 'string'
// specify disabled to disable the filter menu
//, disabled: true
}
}, {
dataIndex: 'sender_name_post',
header: 'Sender Name',
id: 'sendername',
filter: {
type: 'string'
// specify disabled to disable the filter menu
//, disabled: true
}
}, {
dataIndex: 'is_sent_post',
header: 'Status',
filter: {
type: 'boolean' // specify type here or in store fields config
},
renderer: function(value) {
var rtn = (value == 1) ? 'sent' : 'stand-by';
return rtn
}
}, {
dataIndex: 'date_sending_post',
header: 'Sending Date',
hidden:true,
//renderer: Ext.util.Format.dateRenderer('d/m/Y'),
filter: {
type: 'date' // specify type here or in store fields config
}
}, {
dataIndex: 'list_send_post',
header: 'Opticians list',
hidden:true,
id: 'optlist',
filter: {
type: 'number'
// specify disabled to disable the filter menu
//, disabled: true
}
}];
return new Ext.grid.ColumnModel({
columns: columns.slice(start || 0, finish),
defaults: {
sortable: true
}
});
};
/*
//======================contextMenu triggered by right click========================================
*/
var doRowCtxMenu = function ( thisGrid, rowIndex,cellIndex, evtObj )
{
//Ext.popup.msg('Done !', 'Right clicked !');
evtObj.stopEvent();
var sm = thisGrid.getSelectionModel();
var records = sm.getSelections(); // returns an array of Ext.data.Records
try
{
//var r = records[0]; // get the 1st Ext.data.Record of the list
thisGrid.rowCtxMenu = new Ext.menu.Menu({
items: [{
text : '<span style="color:red;">Delete Selected Email ?</span>',
handler : function () {
deletePost(records,thisGrid);
}
}]
});
thisGrid.rowCtxMenu.showAt(evtObj.getXY());
}
catch(err)
{
Ext.popup.msg('Warning !', 'You need to select a row first !');
}
};
/*
//======================END contextMenu triggered by right click========================================
//======================Delete Post Fonction =================================================
*/
function deletePost(records,thisGrid)
{
Ext.Msg.show({
title :'Warning !',
msg : 'You are about to delete 1 email !',
buttons : Ext.Msg.YESNOCANCEL,
fn : function(btn){
if (btn=='yes')
{
var store = thisGrid.getStore();
var s = thisGrid.getSelectionModel().getSelections();
for(var i = 0, r; r = s[i]; i++){
store.remove(r);
}
store.proxy.conn.url = '../myurl.asp';
store.save();
lastOptions = store.lastOptions;
/*Ext.apply(lastOptions.params, {
//myNewParam: true
});*/
store.load(lastOptions);
}
},
animEl : 'elId'
});
}
/*
//======================End delete Function========================================
*/
var Postgrid = new Ext.grid.GridPanel({
id:'post_grid',
border: false,
width: 462,
height:250,
store: PostStore,
colModel: createColModel(8),
loadMask: true,
viewConfig:{
emptyText:'No Post to display, change/clear your filters, refresh the grid or add a new Email!'
},
plugins: [filters],
sm: new Ext.grid.RowSelectionModel({
singleSelect: true,
listeners: {
rowselect: function(sm, row, rec) {
Ext.getCmp("post_form").getForm().loadRecord(rec);
//Ext.getCmp("htmlEdit").setValue("sdcdsdcdscsdc");
}
}
}),
//autoExpandColumn: 'company',
listeners: {
cellcontextmenu : doRowCtxMenu,
render: {
fn: function(){
PostStore.load({
params: {
start: 0,
limit: 50
}
});
}
}
},
bbar: new Ext.PagingToolbar({
store: PostStore,
pageSize: 50,
plugins: [filters]
})
});
// add some buttons to bottom toolbar just for demonstration purposes
Postgrid.getBottomToolbar().add([
'->',
{
text: 'Clear Filter Data',
handler: function () {
Postgrid.filters.clearFilters();
}
}
]);
var panelGrid = new Ext.Panel({
width : 462,
height : 250,
layout : 'fit',
renderTo: 'post-grid',
items: Postgrid
});
});
i will give my callback in firebug json:
{"totalcount":3, "Post": [{"id_post": 83,"name_post": "ghfgh","date_creat_post": "29\u002F04\u002F2011","from_addr_post": "fgh#sdf.com","sender_name_post": "gfh","is_sent_post": false,"date_sending_post": "29\u002F04\u002F2011","html_post": "<p>dfgdgdgd<\u002Fp>","list_send_post": null},{"id_post": 61,"name_post": "thomas test","date_creat_post": "28\u002F07\u002F2010","from_addr_post": "","sender_name_post": "","is_sent_post": false,"date_sending_post": "28\u002F07\u002F2010","html_post": "<p>test test test ets<\u002Fp>","list_send_post": null},{"id_post": 59,"name_post": "kevin test","date_creat_post": "29\u002F06\u002F2010","from_addr_post": "kevin#art-systems.net","sender_name_post": "kevin#art-systems.net","is_sent_post": false,"date_sending_post": "29\u002F06\u002F2010","html_post": "<p>jkljljoi ioijiio ijiojio oijio joijoi<\u002Fp>\u000A<p> <\u002Fp>\u000A<p><span style=\u0022background-color: #ffffff;\u0022>igiuihhuhi<\u002Fspan><\u002Fp>","list_send_post": null}]}
Thanks in advance i hope some on on the wicked web can help me....
cheers.
so after trying many solution giving to be i came to this has problem
finally the the date example after many attemps to format and inserting in my msSQL database
this problem is the problem : 13\09\2011 (d/m/Y) becomes this 09/01/2012 (d/m/Y) so for some reason the month 13 is being added to the month so say the 13 month doesn't exist so the date will go to 09/01/2012....
after looking again it's the format that doesn't seem ok so i changed it de (m/d/Y) and now im getting a sql error when i hit 13 day on my datefield in (extjs).
"The conversion of a varchar data type to a datetime data type resulted in an out-of-range value."
and on and on does anyone have any ideas now ????
Instead of using the built in Ext.util.Format.dateRenderer, you could try creating one of your own that parses the Date as desired.
ataIndex: 'date_creat_post',
header: 'Date Created',
renderer: daterenderer
And then a function for your daterenderer:
function dateRenderer(value, id, r) {
var myDate = r.data['date_creat_post'];
// do some things here to strip out the date and make it into a happy format
var d = new Date(myDate);
return d.format('d/m/Y');
}
Related
Ajax Response Capitalizations Rules
A was using DataTables plugin, and when displaying my columns I needed to put the first letter to LowerCase for it to recognize the property/object, e.g: // Object name is actually: EngineeringChange.Responsible { title: "Responsible", data: "engineeringChange.responsible", className: "columnName columnHeader", }, I just assumed the first letter would always be capitalized to LowerCase. I tried creating a new property inside EngineeringChange named ECRNumber, so I tried: { title: "ECR Number", data: "engineeringChange.eCRNumber", className: "columnName columnHeader", }, Isn't recognized as a parameter... After a bit of searching I find out the Json response I get on AJAX it's called ecrNumber. So now I'm actually lost on which are the rules that are automatically applied to the Json Response. How does it turn ecr to LowerCase and Number to UpperCase (the N)?? Edit Sry, can´t think of any easy way to exactly reproduce my problem on a demo TableDesign/Creation table = $('#tblEntries2').DataTable({ order: [[0, 'desc']], deferRender: true, ajax: { url: '#Url.Action("GetEntries", "AlteracaoEngenharia")', method: 'GET', dataSrc: '', beforeSend: function () { onBegin(); $content.hide(); $loader.show(); }, complete: function (jsonResponse) { console.log(jsonResponse); onComplete(); $loader.hide(); $content.fadeIn(); $('#ExcelExport').show(); table.column(5).visible(false); table.column(6).visible(false); table.column(7).visible(false); table.column(9).visible(false); table.column(10).visible(false); table.column(11).visible(false); } }, dom: "<'row'<'col-2'l><'col-7 text-center'B><'col-3'f>>" + "<'row'<'col-12'tr>>" + "<'row'<'col-5'i><'col-7'p>>", lengthMenu: [ [10, 25, 50, 100, -1], ['10', '25', '50', '100', 'Todos'], ], columns: [ { title: "Id (yr-id)", data: "creationYear", className: "columnNumber columnHeader", }, { title: "ECR Number", data: "engineeringChange.ecrNumber", className: "columnNumber columnHeader", }, { title: "Criador Alteração de Engenharia", data: "engineeringChange.responsible", className: "columnName columnHeader", }, ... Handler public IActionResult GetEntries() { GetDataEntries(); int count = 0; int currentYear = 0; foreach (var entry in EntriesList) { EngineeringChangesListViewModel h = new EngineeringChangesListViewModel { EngineeringChange = entry }; if (currentYear != entry.DataCriacao.Year) { count = 1; currentYear = entry.DataCriacao.Year; } else { count++; } h.DeadLine = entry.FinishedGood.Week + " - " + entry.DataCriacao.Year.ToString(); if (entry.OldPart == null) { h.EngineeringChange.OldPart = new Part(); } if (entry.NewPart == null) { h.EngineeringChange.NewPart = new Part(); } if (entry.FinishedGood == null) { h.EngineeringChange.FinishedGood = new FinishedGood(); } if (entry.OldPart != null && entry.OldPart.CDP.HasValue) h.OldPartValue = entry.OldPart.CDP * entry.OldPart.Stock; if (entry.NewPart != null && entry.NewPart.CDP.HasValue) h.NewPartValue = entry.NewPart.CDP * entry.NewPart.Stock; h.EngineeringChange.ECRNumber = entry.ECRNumber; //toString("D4") padds the number to always be 4 digits h.CreationYear = entry.DataCriacao.Year.ToString() + "_" + count.ToString("D4"); h.IdYear = count; EntriesListaViewModel.Add(h); } var errorsJson = JsonConvert.SerializeObject(EntriesListaViewModel); Console.WriteLine(errorsJson); return new JsonResult(EntriesListaViewModel); } HANDLER OUTPUT [{"CreationYear":"2021_0001","IdYear":1,"OldPartValue":null,"NewPartValue":2061.09155,"DeadLine":"15 - 2021","EngineeringChange":{"Id":8,"DataCriacao":"2021-03-11T16:15:24.6630956","Responsible":"José António","ECRNumber":"X1232","State":"Aberto","Comment":"Teste","UserId":1,"User":null,"Component":null,"FinishedGood":{"Id":31,"Week":15,"EngineeringChangeId":8},"OldPart":{"Id":5,"Reference":"FS12848AC","Stock":null,"CDP":1.43584776,"LastExpired":null},"NewPart":{"Id":6,"Reference":"FS12848AD","Stock":1650,"CDP":1.24914646,"LastExpired":"2021-03-11T00:00:00"},"Transformation":{"Id":188,"Possible":true,"Cost":1090.0,"WillBeTransformed":true,"TransformationDate":"2021-03-13T08:48:00","Responsible":"Miguel","EngineeringChangeId":8}}},] PAGE/AJAX OUTPUT outputs are created by console.log() and Console.WriteLine() displayed above. ECRNumber gets named to ecrNumber...
Kendo Upload in Kendo grid rows add row
I am using Kendo() grid in my application which has binding with an model. I want to provide Upload control in Grid against each row. Please see razor view design as follows: <div id="processDetailGrid"></div> var processDetailGrid , processDetailDataSource , processDetailToolbar , projectComboBox; $(function () { ProcessDetailToolbar = $("#processDetailToolbar").kendoToolBar({items: [{ id: "processDetailAdd", type: "button", spriteCssClass: "fa fa-plus-square", text: "Add", overflow: "never", click: processDetailAdd }]}).data("kendoToolBar"); function processDetailAdd() { processDetailGrid.addRow();} processDetailGrid = $("#processDetailGrid").kendoGrid({ dataSource: processDetailDataSource, height: '98%', selectable: "cell", resizable: true, reorderable: true, columnMenu: true, editable: false, columns: [ { field: "SoftwareUpLoad", title: "#Resource.Field_SoftwareUpLoad", template: kendo.template($("#template").html()), // template: '#= SoftwareUpLoad==""?"<input type=\'file\' show=\'0\' name=\'files\' />":"<a class=\'k-button\' href=\'GetFiles?key=SoftwareUpLoad\'>Download</a>"#', width: 300 }, { field: "CutterCode", title: "CutterCode", width: 200 } ], dataBound: function (e) { var grid = this; var firstItem = this.dataSource.view()[0]; this.tbody.find("input[name=files][show=0]").kendoUpload({ multiple: false, async: { saveUrl: 'save', removeUrl: "remove", autoUpload: true }, validation: { allowedExtensions: [".pdf"] }, upload: function (e) { var item = grid.dataItem(this.element.closest("tr")); var id = BillId; this.element.closest(".k-button").addClass("k-state-disabled"); this.element.closest(".k-button").find("input[name=files]").attr("show", "1"); e.data = { id: id, Operation: item.OperationNO }; }, remove: function (e) { var item = grid.dataItem(this.element.closest("tr")); var id = BillId; this.element.closest(".k-button").removeClass("k-state-disabled"); e.data = { id: id, Operation: item.OperationNO }; }, success: function (e) { var FileName = e.response.FileName; var item = grid.dataItem(this.element.closest("tr")); item.FileName = FileName; item.dirty = false; } }); } }).data("kendoGrid"); }) In the grid data line I upload data, click on the new line button, upload the data will be automatically emptied,but I want't that, I would like to ask how to do?
Extjs4 Button rednerer in grid dom is null error
i am facing a problem which i want to generate a button in grid column by using reconfigure function. i find my code consist of the Extjs error during renderer function 'Uncaught TypeError: Cannot read property 'dom' of null' i checked that it should be come from "renderTo: id3", do you have any idea on it? Do i do something wrong in my render button function in the grid? Although i pop up error message, but the UI still can show the button i genereated. it is very confused. var createColumns = function (json) { var keys = getKeysFromJson(json[0]); return keys.map(function (field) { if(field!='unread'&&field!='linkerType'&&field!='linkParam'&&field!='refNumber'&&field!='oid'&&field!='refOwner'){ return { text: Ext.String.capitalize(field), //flex : 1, dataIndex: field, sortable: true, menuDisabled: true, renderer: function (val, metadata, record) { if(field=='action') { var str = val.split(":"); metadata.style = "text-align: left"; if(str[2]=='true'&&str[1]=='false'){ var id3 = Ext.id(); Ext.defer(function () { Ext.widget('button', { renderTo: id3, margin: '0 0 0 10', iconAlign: 'center', tooltip:'Ok to Ship Again', cls: 'x-btn-default-small', text: '<img src="images/OKToShipAgain.png">', handler: function() { items=[]; items.push({ "oid" : record.get('oid'), "refNumber" : record.get('refNumber'), "refOwner" : record.get('refOwner') }); Ext.Ajax.request({ url: '#{csMenuBean.contextPath}/ws3/todolistservice/submitOktoship', params: {data: Ext.encode(items)}, success : function(response){ } }); } }) }, 50); return Ext.String.format('<span id="{0}"></span>', id3); }
dojo Grid Json issue
I have this code dojo.ready(function(){ inventoryStore = new dojo.store.JsonRest({ target: "http://localhost:9080/driver/dojoMVC", idProperty: "name", put: function(object, options){ if(object.quantity < 0){ throw new Error("quantity must not be negative"); } } }); results = inventoryStore.query(""); var storeData = new dojo.data.ItemFileWriteStore({ data:dojo.fromJson(results) }); gridLayout = [ { name: 'Name', field: 'name', editable: true}, { name: 'Quantity', field: 'quantity'}, { name: 'Category', field: 'category'}]; var grid = new dojox.grid.DataGrid({ store: storeData, clientSort: true, structure: gridLayout }, dojo.byId("gridElement")); grid.startup(); When i run it i receive this strange error in FF console SyntaxError: missing ] after element list [Break On This Error] ([object Object]) json.js (line 26, col 9) Can anyone help me with this? Thanks
maybe you must setup your Layout like this : var layout = [[ {name:"Id", field: "ident", width:"30%"}, {name:"Name", field: "name", width:"70%"} ]]; In Ev'ry Example i find in dojo the layout is in double brackets. This would explain why the Error says " missing ]". Look: http://dojotoolkit.org/reference-guide/1.9/dojo/data/ItemFileWriteStore.html?highlight=itemfilewritestore#itemfilewritestore-changes-reflected-in-dojox-data-datagrid Update1 so the Error lies in the store. Have you tried to fill in the data like: results = inventoryStore.query( name : "*"); // to query all items Have you checked it there are any results in "results"? var storeData = new dojo.data.ItemFileWriteStore({ data:results }); After all i would try to fill in the data without dojo.fromJson. Give it a try. Regards, Miriam
The problem is inside the code you posted, which has a syntax error at the very end around line 26. You started with dojo.ready({ but didn't finish it with }); Here, reformatted to make it more obvious: dojo.ready(function(){ inventoryStore = new dojo.store.JsonRest({ target: "http://localhost:9080/driver/dojoMVC", idProperty: "name", put: function(object, options){ if(object.quantity < 0){ throw new Error("quantity must not be negative"); } } }); results = inventoryStore.query(""); var storeData = new dojo.data.ItemFileWriteStore({ data:dojo.fromJson(results) }); gridLayout = [ { name: 'Name', field: 'name', editable: true}, { name: 'Quantity', field: 'quantity'}, { name: 'Category', field: 'category'} ]; var grid = new dojox.grid.DataGrid({ store: storeData, clientSort: true, structure: gridLayout }, dojo.byId("gridElement")); grid.startup(); Try adding: }); Also, you're missing some var keywords in there.
Mongoose .populate() only showing 1 document
I am trying to output just the hometeam name's to the page so that I can try to understand how to work with my code better. It is only printing one team to the page, and it is printing all the details of that team to the page, whereas I only want it to print one part. This is my code, I want it to print the name's of each hometeam to the page app.get('/home', function(req, res) { Match.findOne({}).populate('hometeam.name').exec(function(err, teams){ util.log(teams); res.send(teams); }); }); But when I load the page all I get is the first piece of data from this list of Matches [ { "hometeam": "5106e7ef9afe3a430e000007", "_id": "5113b7ca71ec596125000005", "__v": 0, "key": 1360246730427 }, { "hometeam": "5113c13e0eea687b28000001", "_id": "5113e951354fe70330000001", "__v": 0, "key": 1360259409361 }, { "hometeam": "5113c13e0eea687b28000001", "_id": "5113e999354fe70330000002", "__v": 0, "key": 1360259481412 } ] Also, if I try to put util.log(teams.hometeam.name) I get the following: TypeError: Cannot call method 'toString' of undefined But I would want it to be able to print the name which belongs to hometeam here. As hometeam is just the objectId of a Team in my database, am I missing something with the DBreferencing here? Update: Team Schema var Team = new Schema({ 'key' : { unique : true, type : Number, default: getId }, 'name' : { type : String, validate : [validatePresenceOf, 'Team name is required'], index : { unique : true } } }); module.exports.Schema = Team; module.exports.Model = mongoose.model('Team', Team); Match Schema var Team = require('../schemas/Team').Schema; var Match = new Schema({ 'key' : { unique: true, type: Number, default: getId }, 'hometeam' : { type: Schema.ObjectId, ref: 'Team' }, 'awayteam' : { type: Schema.ObjectId, ref: 'Team' } }); module.exports = mongoose.model('Match', Match);
Populate takes the property name of the property you are trying to retrieve. This means that you should use 'hometeam' instead of 'hometeam.name'. However, you want to retrieve the name of the team so you could filter for that. The call would then become.. Match.findOne({}).populate('hometeam', {name: 1}).exec(function(err, teams) Now you have a property called 'hometeam' with in that the name. Have fun :) EDIT Showing how to have a single mongoose instance in more files to have correct registration of schemas. app.js var mongoose = require('mongoose'); var Team = require('./schemas/team-schema')(mongoose); var Match = require('./schemas/match-schema')(mongoose); // You can only require them like this ONCE, afterwards FETCH them. var Team = mongoose.model('Team'); // LIKE THIS schemas/match-schema.js module.exports = function(mongoose) { var Match = new mongoose.Schema({ 'key' : { unique: true, type: Number, default: getId }, 'hometeam' : { type: mongoose.Schema.ObjectId, ref: 'Team' }, 'awayteam' : { type: mongoose.Schema.ObjectId, ref: 'Team' } }); return mongoose.model('Match', Match); }; schemas/team-schema.js module.exports = function(mongoose) { var Team = new mongoose.Schema({ 'key' : { unique : true, type : Number, default: getId }, 'name' : { type : String, validate : [validatePresenceOf, 'Team name is required'], index : { unique : true } } }); return mongoose.model('Team', Team); };