You cannot post messages because only members can post, and you are not currently a member.
Description:
Discussions related to development of and with the MochiKit JavaScript library
|
|
|
Can not doSimpleXMLHttpRequest in local
|
| |
hi! i fix v2 to v3. Github API in packd/MochiKit/customize.html url = 'file:///C:/Users/bindi/Work/m ochi-mochikit-9abc227/packed/M ochiKit/MochiKit.js'; doSimpleXMLHttpRequest(url); Firefox -> no response IE8 -> error on errback can not file protocol? And help me. i first touch GitHub API, and beginner web service API.... more »
|
|
Multiselect List
|
| |
Hi,
I am very new to mochiKit and would appreciate some help.
I have a form containing a multi-select list, I am try to use AJAX and
JSON to produce async tasks. Currently I can't get all the selected
elements from the multi-select list passed to the server.
How can I obtained all selected elements from the list after submit... more »
|
|
Is MochiKit Dead?
|
| |
So, given that:
* There hasn't been a blog post on the website in ... ever (according
to the front of the site; in reality there was a post back in 2008)
* There hasn't been a release since 2008
* This mailing list gets a post (with no response) once every other
month or so, if that
* MochiKit is less popular than random frameworks I've never heard of... more »
|
|
Added sortable_tables.js Overrides for Column # and Sort Order
|
| |
Hi Folks,
I added a way to specify the default sort column and order. The docs
don't seem to indicate any prescribed way to do this, and looking
through the source code I see the initial table sort was always on
column 0, forward order.
So add this to your HTML:
<div id="sortable_table_sortkey" style="display: none;">1</div>... more »
|
|
Callbaback parameters
|
| |
Hello,
I'm trying to pass parameters to a callback function,
in the example above : d.addCallbacks(gotMetadata, this);
i added a addErrCallback.
What i am missing ?
Tnak you for your help
Regards
Salvatore
function FormController(){
this.user = {
name: "",
valide: true,... more »
|
|
Callaback parameters (follow..)
|
| |
Sorry I have corrected my errors.
The problem now is that my field ctx.user.data is not modified...
function FormController(){
this.user = {
name: "ALBATOR",
valide: true,
data : "TEST"
}
...
FormController.prototype = {
fetchdata: function () {
this.user.data = "Loading...";... more »
|
|
typeName() function -- introspecting object types
|
| |
Being tired of all the idiosyncrasies of the typeof() operator, I tried to make something better: function typeName(value) { if (typeof(value) !== "object" && !(value instanceof RegExp)) { return typeof(value); } else if (value == null) { return "null";... more »
|
|
Async Deferred discussion
|
| |
Hi,
Since MochiKit pioneered JavaScript implementation of the Deferred
pattern I thought I'd make you aware of two current discussions
regarding this on the Google Closure library mailing list.
(Google's initial Deferred impl is actually a port from MochiKit, see
[link]).... more »
|
|
|