[jQuery] Re: jBind With FireFox

2009-04-28 Thread a.karimzadeh

I guess you have bad template format. download the jbind samples and
test them in safari and firefox.

You can get them from here.
http://arashkarimzadeh.com/index.php/downloads.html?func=select&id=10


On Mar 24, 12:19 pm, ".Nil"  wrote:
> Hi,
>
> I'm using JBind in my project. I have defined the template and binding
> data to it by using BindTo() method. This solution works very fine
> with Internet Explorer, but when it comes to Firefox and safari it
> fails
>
> Can somebody tell me how to get out this issue? We need to have
> firefox comaptibility.
>
> Regards,
> .Nil


[jQuery] Re: Jbind/JQuery With Safari browser

2009-04-28 Thread a.karimzadeh

I guess you have bad template format. download the jbind samples and
test them in safari and firefox.

You can get them from here.
http://arashkarimzadeh.com/index.php/downloads.html?func=select&id=10

On Mar 24, 7:49 pm, ".Nil"  wrote:
> Hi,
>
> I have an Aspx page in which I'm using JQuery. I'm perticularly using
> jBind plug in of JQuery for binding data to the template.
> I have 4 divs in to my solution. Out of 4, 2 Divs are bound to
> templates and rendered as per the template. This solution works very
> fine with IE 7.0 and Firefox, but when it comes to Safari, I could not
> see the Divs that are bound to templates.
>
> Is there any thing I need to do to render those in safari. Is there a
> jQuery and jBind support for Safari?


[jQuery] Chainclude (include css / js sequentially)

2009-03-15 Thread a.karimzadeh

include multiple css /js in a sequence.

read more @
http://arashkarimzadeh.com/jquery/18-chainclude-jquery-pluign-for-including-js-and-css-in-a-sequence.html

Best regards,
Arash Karimzadeh


[jQuery] include multiple css, js ,html on demand with jQuery

2009-02-21 Thread a.karimzadeh

by using the includeMany 1.0.0 plugin you can add multiple files with
different callbacks for each one and also a global callback after all
are loaded
check it here:
http://www.arashkarimzadeh.com/index.php/jquery/17-includemany-jquery-include-many.html

Arash Karimzadeh
http://www.arashkarimzadeh.com


[jQuery] Editable new feature $(selector).editable('disable')

2009-01-30 Thread a.karimzadeh

This new version of editable supports

$(selector).editable(options)
$(selector).editable('disable')
$(selector).editable('enable')
$(selector).editable('destroy')

for more information check:
http://arashkarimzadeh.com/index.php/jquery/7-editable-jquery-plugin.html
or read how to extend for supporting more types here:
http://arashkarimzadeh.com/index.php/jquery/9-how-to-extend-jquery-editable.html


[jQuery] jQuery Fill (use notemplate)

2009-01-30 Thread a.karimzadeh

When you want to fill a part of your html with specific data once and
show it. You can use $(selector).bind(data,{fill:true}); which require
jBind plugin.

jBind will bind will first find the html content of matched selector
and fill it's content with assigned data. You can find out more by
downloading it's sample package or reading it's documentation.

This feature is added in version 1.5.3
read more here :
http://arashkarimzadeh.com/index.php/articles/6-jquery/14-jquery-fill-by-data.html


[jQuery] jBind 1.5.0 (add action when binding data to template)

2009-01-25 Thread a.karimzadeh

jBind is jQuery plugin for binding any complex data to templates in an
easy way. By using $(template).bindTo(data) you can bind your data to
the template.

This version 1.5.0 allows you to define your own function and apply it
during binding.So you can treat a special item in your aggregate
object differently.

Find out more at 
http://arashkarimzadeh.com/index.php/jquery/11-jbind-jquery-bind-template.html

Arash Karimzadeh
http://www.arashkarimzadeh.com


[jQuery] New jQuery Editable released.

2009-01-18 Thread a.karimzadeh

You can check it here:http://plugins.jquery.com/project/Editable

It's fully customizable:

#1 Easy to use
$('div.editable').editable();
#2 Submission can be set on any Event
$('div.editable').editable({submitBy:'change'});
#3 Can use onSubmit and onEdit to define your own behavior.
$('div.editable').editable(type:'select',options:{'a':'Item 1',
'b':'Item 2'},submit:'save',cancel:'cancel',onSubmit:endFunction);
#4 Currently it convert tags to textbox, password, textarea, drop-down
list. you can extend it by extending $.editFactory to support more
tags.

Check this website to find out more:
http://arashkarimzadeh.com/index.php/jquery/7-editable-jquery-plugin.html

Find how to extend it:
http://arashkarimzadeh.com/index.php/jquery/9-how-to-extend-jquery-editable.html


[jQuery] jBind (Bind Data to Template)

2009-01-18 Thread a.karimzadeh

jBind is jQuery plugin for binding any complex data to templates in an
easy way. By using $(template).bind(data) you can bind your data to
the template.

You can download it from jQuery website:
http://plugins.jquery.com
or directly from here:
http://arashkarimzadeh.com/index.php/downloads.html?func=select&id=9
or you can find out more about jBind and download samples @
http://arashkarimzadeh.com/index.php/jquery/10-jbind-jquery-bind-template.html