දන්න කෙනෙක් කවුරුවත් නැද්ද?
Posts made by kasun viduranga
-
RE: angular site එකක button එකක් click කරලා අලුත් page එකකට redirect වෙනකොට javascript run වෙන්නෙ නැත්තෙ ඇයි. page eka reload කරොත් run වෙනවා.
@root html template ekak use karala thama angular site eka haduwe, template eke css valata thiyena javascript code run venne na, eke loku code ekak thiyenavane
-
sticky note app එකක sticky note එක display කරන විදිහ ගැන දන්න කෙනෙක් ඉන්නවම් කියන්න. flutter use කරල නම් වඩාත් හොදයි. android හරි කමක් නෑ.
sticky note app එකක sticky note එක display කරන විදිහ ගැන දන්න කෙනෙක් ඉන්නවම් කියන්න. flutter use කරල නම් වඩාත් හොදයි. android හරි කමක් නෑ.
-
RE: angular site එකක button එකක් click කරලා අලුත් page එකකට redirect වෙනකොට javascript run වෙන්නෙ නැත්තෙ ඇයි. page eka reload කරොත් run වෙනවා.
@root js වලින් run වෙන drop-down තමා වැඩ කරන්නේ නැත්තෙ
-
angular site එකක button එකක් click කරලා අලුත් page එකකට redirect වෙනකොට javascript run වෙන්නෙ නැත්තෙ ඇයි. page eka reload කරොත් run වෙනවා.
angular site එකක button එකක් click කරලා අලුත් page එකකට redirect වෙනකොට javascript run වෙන්නෙ නැත්තෙ ඇයි. page eka reload කරොත් run වෙනවා.
-
RE: html වලට use කරන google සිංහල font තියෙනවද ? ඒ මොනවද ?
@root http://pathnirvana.org/custom/unicode_tools/test_fonts/ මේ link එකේ තියෙන unicode font වගේ ඒවා use karanna use කරන්න පුලුවන් විදිහක් තියෙනවද?
-
RE: html වලට use කරන google සිංහල font තියෙනවද ? ඒ මොනවද ?
@root මේ වගේ font style වලට use කරන sinhala google font තියෙනවද?
-
html වලට use කරන google සිංහල font තියෙනවද ? ඒ මොනවද ?
html වලට use කරන google සිංහල font තියෙනවද ? ඒ මොනවද ?
-
windows on-screen keyboard එක javascript වලින් open කරගන්නෙ කොහොමද?
windows on-screen keyboard එක javascript වලින් open කරගන්නෙ කොහොමද?
-
PHP zend framework එක ගැන දන්න කෙනෙක් ඉන්නව නම් කියාදෙන්න.
PHP zend framework එක ගැන දන්න කෙනෙක් ඉන්නව නම් කියාදෙන්න.
-
RE: I want to update database inside a for loop.But before my database update for loop ends. (#node js, #mongoose)
how to use await function for this code.
var patientObj = JSON.parse(JSON.stringify(patients)); for (var i = 0; i < patientObj.length; i++) { var patientIds = "00" + (i + 1); var patientNewIdObj = { barCodeId: patientIds} var currentPatientId = patientObj[i]._id; modelPatient.findOneAndUpdate({ _id: currentPatientId }, patientNewIdObj, { new: true, safe: true }).exec(function (err, patientRet) { if (err) { callBack(callBackResponse.callbackWithDefaultError(err)); } else if (patientRet == null || patientRet == undefined) { callBack(callBackResponse.callbackWithfalseMessage('Invalid patient ID')); } else { callBack(callBackResponse.callbackWithData(patientRet)); } }); }
-
I want to update database inside a for loop.But before my database update for loop ends. (#node js, #mongoose)
var patientObj = JSON.parse(JSON.stringify(patients));
for (var i = 0; i < patientObj.length; i++) {
var patientIds = "00" + (i + 1);
var patientNewIdObj = { barCodeId: patientIds}
var currentPatientId = patientObj[i]._id;modelPatient.findOneAndUpdate({ _id: currentPatientId }, patientNewIdObj, { new: true, safe: true }).exec(function (err, patientRet) { if (err) { callBack(callBackResponse.callbackWithDefaultError(err)); } else if (patientRet == null || patientRet == undefined) { callBack(callBackResponse.callbackWithfalseMessage('Invalid patient ID')); } else { callBack(callBackResponse.callbackWithData(patientRet)); } });
}