Quantcast
Channel: ASP.net MVC Awesome - jQuery Ajax helpers
Viewing all 345 articles
Browse latest View live

New Post: Full Source Code for Open Source Project

$
0
0
I think the Buy page should explicitly say "NO SOURCE CODE INCLUDED".

When developing an application I want the source code of any 3rd party components I use (like devexpress) to browse and learn, perform emergency bugfixes and as security in case the vendor disappears. Why should anyone have to make 1.9 as good as 3+ themselves if they want a source code option?

It's a pity developers have to protect themselves this way as they also lose honest customers.

New Post: changing pop-up behavior

$
0
0
Is there a way to have all the forms, etc that pop up on the prodinner site to replace the divs, etc, in the traditional ajax manner (while the popups seem cool, they also get in the way on mobile devices, etc). Thanks, Tim

New Post: changing pop-up behavior

$
0
0
try setting Fullscreen(true) for all the popups,
you can change he defaults by Calling Settings.PopupForm.Fullscreen = true; Settings.Popup.Fullscreen = true;

this way the popup will occupy the whole browser window all the time

New Post: cascading dropdowns problem with id in javascript.

$
0
0
Hi,

Thanks to your library. I'm developing with MVC 4 and Razor. I'm using cascading dropdownlists like this :
@Html.Awe().AjaxDropdownFor(o => o.ListCategories).Url(Url.Action("GetItems","Categorie"))
            @Html.Awe().AjaxDropdownFor(o => o.ListActivites).Parent(o => o.ListCategories).Url(Url.Action("GetItems","Activite"))
It's ok, but not with this syntaxe
 @Html.Awe().AjaxDropdownFor(model => model.Rapport.id_categorie).Url(Url.Action("GetItems","Categorie"))
@Html.Awe().AjaxDropdownFor(model => model.Rapport.id_activite).Parent(model => model.Rapport.id_categorie).Url(Url.Action("GetItems","Activite"))
In javascript the id of Rapport.id_categorie is "Rapport_id_categorie" with "_" instead of "Rapport.id_categorie" with "."

I force that like this:
@Html.Awe().AjaxDropdownFor(model => model.Rapport.id_activite).Parent("Rapport_id_categorie").Url(Url.Action("GetItems","Activite"))
Have you an atoher solution ?

Thank's to your help. Sorry to my poor english.

New Post: cascading dropdowns problem with id in javascript.

$
0
0
that's the way to do it with the current version when binding to nested (a.b.c) properties
in the next version it will work with the lambda .Parent as well

New Post: cascading dropdowns problem with id in javascript.

Created Unassigned: how to use awesome mvc using razor [1619]

$
0
0
<div class="editor-field">
@Html.Awe().DatePickerFor(model => model.Date)

ERROR AWE NOT FOUND

Closed Unassigned: how to use awesome mvc using razor [1619]

$
0
0
<div class="editor-field">
@Html.Awe().DatePickerFor(model => model.Date)

ERROR AWE NOT FOUND
Comments: please have a read of this:
http://aspnetawesome.com/learn/mvc/Installation

you can also have a look on the prodinner demo which is using razor viewengine

http://prodinner.codeplex.com

Released: 3.5 (Aug 15, 2013)

$
0
0
  • autosize for all popups ( can be turned off by calling in js awe.autoSize = false )
  • added Parent, Paremeter extensions to Popup and PopupForm helpers
  • trigger aweload event on load of Grid, AjaxDropdown, AjaxRadioList, AjaxCheckboxList, Lookup, MultiLookup
  • Client Side API for the AjaxDropdown, CheckboxList, AjaxRadioList
  • oparams for all apis (one time params, params are persisted for subsequent calls)
  • Grid selection: Multiselect, Singleselect, Multicheck
  • Grid RTL support
  • Grid row model can be obtained by calling $('row selector').data('model')
  • new grid api calls: get last request, last result
  • Grid columns definition can be changed by setting the GridModel.Columns or GridParams.Columns before passing gridParmas to the GridModelbuilder
  • SendColumns grid extension will set the columns definition in the GridParams
  • added Order property to the column
  • Numeric extension for the autocomplete
  • added HtmlAttributes(IDictionary<string,object>) extension to all helpers with HtmlAttributes(object) extension
  • underscores from html attributes names specified using the HtmlAttributes(object) are converted to dash
  • new datepicker extensions: MinDate, MaxDate, default date, isRtl

Created Release: 3.5 (Aug 15, 2013)

$
0
0
  • autosize for all popups ( can be turned off by calling in js awe.autoSize = false )
  • added Parent, Paremeter extensions to Popup and PopupForm helpers
  • trigger aweload event on load of Grid, AjaxDropdown, AjaxRadioList, AjaxCheckboxList, Lookup, MultiLookup
  • Client Side API for the AjaxDropdown, CheckboxList, AjaxRadioList
  • oparams for all apis (one time params, params are persisted for subsequent calls)
  • Grid selection: Multiselect, Singleselect, Multicheck
  • Grid RTL support
  • Grid row model can be obtained by calling $('row selector').data('model')
  • new grid api calls: get last request, last result
  • Grid columns definition can be changed by setting the GridModel.Columns or GridParams.Columns before passing gridParmas to the GridModelbuilder
  • SendColumns grid extension will set the columns definition in the GridParams
  • added Order property to the column
  • Numeric extension for the autocomplete
  • added HtmlAttributes(IDictionary<string,object>) extension to all helpers with HtmlAttributes(object) extension
  • underscores from html attributes names specified using the HtmlAttributes(object) are converted to dash
  • new datepicker extensions: MinDate, MaxDate, default date, isRtl

Updated Release: 3.5 (Aug 15, 2013)

$
0
0
  • autosize for all popups ( can be turned off by calling in js awe.autoSize = false )
  • added Parent, Paremeter extensions to Popup and PopupForm helpers
  • trigger aweload event on load of Grid, AjaxDropdown, AjaxRadioList, AjaxCheckboxList, Lookup, MultiLookup
  • Client Side API for the AjaxDropdown, CheckboxList, AjaxRadioList
  • oparams for all apis (one time params, params are persisted for subsequent calls)
  • Grid selection: Multiselect, Singleselect, Multicheck
  • Grid RTL support
  • Grid row model can be obtained by calling $('row selector').data('model')
  • new grid api calls: get last request, last result
  • Grid columns definition can be changed by setting the GridModel.Columns or GridParams.Columns before passing gridParmas to the GridModelbuilder
  • SendColumns grid extension will set the columns definition in the GridParams
  • added Order property to the column
  • Numeric extension for the autocomplete
  • added HtmlAttributes(IDictionary<string,object>) extension to all helpers with HtmlAttributes(object) extension
  • underscores from html attributes names specified using the HtmlAttributes(object) are converted to dash
  • new datepicker extensions: MinDate, MaxDate, default date, isRtl

Released: 3.5 (Aug 15, 2013)

$
0
0
  • autosize for all popups ( can be turned off by calling in js awe.autoSize = false )
  • added Parent, Paremeter extensions to Popup and PopupForm helpers
  • trigger aweload event on load of Grid, AjaxDropdown, AjaxRadioList, AjaxCheckboxList, Lookup, MultiLookup
  • Client Side API for the AjaxDropdown, CheckboxList, AjaxRadioList
  • oparams for all apis (one time params, params are persisted for subsequent calls)
  • Grid selection: Multiselect, Singleselect, Multicheck
  • Grid RTL support
  • Grid row model can be obtained by calling $('row selector').data('model')
  • new grid api calls: get last request, last result
  • Grid columns definition can be changed by setting the GridModel.Columns or GridParams.Columns before passing gridParmas to the GridModelbuilder
  • SendColumns grid extension will set the columns definition in the GridParams
  • added Order property to the column
  • Numeric extension for the autocomplete
  • added HtmlAttributes(IDictionary<string,object>) extension to all helpers with HtmlAttributes(object) extension
  • underscores from html attributes names specified using the HtmlAttributes(object) are converted to dash
  • new datepicker extensions: MinDate, MaxDate, default date, isRtl

Updated Release: 3.5 (Aug 15, 2013)

$
0
0
  • autosize for all popups ( can be turned off by calling in js awe.autoSize = false )
  • added Parent, Paremeter extensions to Popup and PopupForm helpers
  • trigger aweload event on load of Grid, AjaxDropdown, AjaxRadioList, AjaxCheckboxList, Lookup, MultiLookup
  • Client Side API for the AjaxDropdown, CheckboxList, AjaxRadioList
  • oparams for all apis (one time params, params are persisted for subsequent calls)
  • Grid selection: Multiselect, Singleselect, Multicheck
  • Grid RTL support
  • Grid row model can be obtained by calling $('row selector').data('model')
  • new grid api calls: get last request, last result
  • Grid columns definition can be changed by setting the GridModel.Columns or GridParams.Columns before passing gridParmas to the GridModelbuilder
  • SendColumns grid extension will set the columns definition in the GridParams
  • added Order property to the column
  • Numeric extension for the autocomplete
  • added HtmlAttributes(IDictionary<string,object>) extension to all helpers with HtmlAttributes(object) extension
  • underscores from html attributes names specified using the HtmlAttributes(object) are converted to dash
  • new datepicker extensions: MinDate, MaxDate, default date, isRtl

Updated Wiki: Home

$
0
0
Project Description
It contains a rich set of helpers (controls) that you can use to build highly responsive and interactive Ajax-enabled Web applications. These helpers include Autocomplete, AjaxDropdown, Lookup, MultiLookup, AjaxForm, AjaxRadioList, AjaxCheckBoxList, DatePicker, Confirm Dialog, Popup Form and Pager

Project website: www.aspnetawesome.com

Demo App Live Link: http://demo.aspnetawesome.com

download demo app

ProDinner: http://prodinner.aspnetawesome.com

download prodinnerhttp://prodinner.codeplex.com

Learn http://www.aspnetawesome.com/learn

Main Video Tutorial: http://youtu.be/qDyhszMa1yA?hd=1

subjects covered: installation, AjaxDropdown, binding to Parents (cascade) , using Predefined Parameters, AjaxRadiolist, debugging in firebug

Lookup, MultiLookup and AjaxList Tutorial: http://youtu.be/gxb3z2VYJqg?hd=1

Popup, PopupForm and AjaxForm Tutorial: http://youtu.be/KcXUES-fN5s?hd=1

ASP.net MVC Tutorial: http://www.youtube.com/watch?v=fsfOFL4bXXA

Quick Demo:



Documentation for ASP.net MVC Awesome (version 1.9) Free version

Downloads


Recommendation: use firebug, and keep the console tab active
Video Tutorials
Lookup download watch: http://www.youtube.com/watch?v=OqkwM4P9zYo
AjaxDropdown download watch: http://www.youtube.com/watch?v=qW94rtkXPOQ
Lookup with Multiselect download watch: http://www.youtube.com/watch?v=NskjWx32lsk

Updated Wiki: Home

$
0
0
Project Description
It contains a rich set of helpers (controls) that you can use to build highly responsive and interactive Ajax-enabled Web applications. These helpers include Autocomplete, AjaxDropdown, Lookup, MultiLookup, AjaxForm, AjaxRadioList, AjaxCheckBoxList, DatePicker, Confirm Dialog, Popup Form and Pager

Project website: www.aspnetawesome.com

Demo App Live Link: http://demo.aspnetawesome.com

download demo app

ProDinner: http://prodinner.aspnetawesome.com

download prodinnerhttp://prodinner.codeplex.com

Learn http://www.aspnetawesome.com/learn

Main Video Tutorial: http://youtu.be/qDyhszMa1yA?hd=1

subjects covered: installation, AjaxDropdown, binding to Parents (cascade) , using Predefined Parameters, AjaxRadiolist, debugging in firebug

Lookup, MultiLookup and AjaxList Tutorial: http://youtu.be/gxb3z2VYJqg?hd=1

Popup, PopupForm and AjaxForm Tutorial: http://youtu.be/KcXUES-fN5s?hd=1

ASP.net MVC Tutorial: http://www.youtube.com/watch?v=fsfOFL4bXXA

Quick Demo:



Documentation for ASP.net MVC Awesome (version 1.9) Free version

Downloads


Recommendation: use firebug, and keep the console tab active
Video Tutorials
Lookup download watch: http://www.youtube.com/watch?v=OqkwM4P9zYo
AjaxDropdown download watch: http://www.youtube.com/watch?v=qW94rtkXPOQ
Lookup with Multiselect download watch: http://www.youtube.com/watch?v=NskjWx32lsk

Released: 3.5 (Aug 15, 2013)

$
0
0
  • autosize for all popups ( can be turned off by calling in js awe.autoSize = false )
  • added Parent, Paremeter extensions to Popup and PopupForm helpers
  • trigger aweload event on load of Grid, AjaxDropdown, AjaxRadioList, AjaxCheckboxList, Lookup, MultiLookup
  • Client Side API for the AjaxDropdown, CheckboxList, AjaxRadioList
  • oparams for all apis (one time params, params are persisted for subsequent calls)
  • Grid selection: Multiselect, Singleselect, Multicheck
  • Grid RTL support
  • Grid row model can be obtained by calling $('row selector').data('model')
  • new grid api calls: get last request, last result
  • Grid columns definition can be changed by setting the GridModel.Columns or GridParams.Columns before passing gridParmas to the GridModelbuilder
  • SendColumns grid extension will set the columns definition in the GridParams
  • added Order property to the column
  • Numeric extension for the autocomplete
  • added HtmlAttributes(IDictionary<string,object>) extension to all helpers with HtmlAttributes(object) extension
  • underscores from html attributes names specified using the HtmlAttributes(object) are converted to dash
  • new datepicker extensions: MinDate, MaxDate, default date, isRtl

Updated Release: 3.5 (Aug 15, 2013)

$
0
0
  • autosize for all popups ( can be turned off by calling in js awe.autoSize = false )
  • added Parent, Paremeter extensions to Popup and PopupForm helpers
  • trigger aweload event on load of Grid, AjaxDropdown, AjaxRadioList, AjaxCheckboxList, Lookup, MultiLookup
  • Client Side API for the AjaxDropdown, CheckboxList, AjaxRadioList
  • oparams for all apis (one time params, params are persisted for subsequent calls)
  • Grid selection: Multiselect, Singleselect, Multicheck
  • Grid RTL support
  • Grid row model can be obtained by calling $('row selector').data('model')
  • new grid api calls: get last request, last result
  • Grid columns definition can be changed by setting the GridModel.Columns or GridParams.Columns before passing gridParmas to the GridModelbuilder
  • SendColumns grid extension will set the columns definition in the GridParams
  • added Order property to the column
  • Numeric extension for the autocomplete
  • added HtmlAttributes(IDictionary<string,object>) extension to all helpers with HtmlAttributes(object) extension
  • underscores from html attributes names specified using the HtmlAttributes(object) are converted to dash
  • new datepicker extensions: MinDate, MaxDate, default date, isRtl

Updated Wiki: Home

$
0
0
Project Description
It contains a rich set of helpers (controls) that you can use to build highly responsive and interactive Ajax-enabled Web applications. These helpers include Autocomplete, AjaxDropdown, Lookup, MultiLookup, AjaxForm, AjaxRadioList, AjaxCheckBoxList, DatePicker, Confirm Dialog, Popup Form and Pager

Project website: http://aspnetawesome.com

Demo App Live Link: http://demo.aspnetawesome.com

download demo app

ProDinner: http://prodinner.aspnetawesome.com

download prodinnerhttp://prodinner.codeplex.com

Learn http://aspnetawesome.com/learn

Main Video Tutorial: http://youtu.be/qDyhszMa1yA?hd=1

subjects covered: installation, AjaxDropdown, binding to Parents (cascade) , using Predefined Parameters, AjaxRadiolist, debugging in firebug

Lookup, MultiLookup and AjaxList Tutorial: http://youtu.be/gxb3z2VYJqg?hd=1

Popup, PopupForm and AjaxForm Tutorial: http://youtu.be/KcXUES-fN5s?hd=1

ASP.net MVC Tutorial: http://www.youtube.com/watch?v=fsfOFL4bXXA

Quick Demo:



Documentation for ASP.net MVC Awesome (version 1.9) Free version

Downloads


Recommendation: use firebug, and keep the console tab active
Video Tutorials
Lookup download watch: http://www.youtube.com/watch?v=OqkwM4P9zYo
AjaxDropdown download watch: http://www.youtube.com/watch?v=qW94rtkXPOQ
Lookup with Multiselect download watch: http://www.youtube.com/watch?v=NskjWx32lsk

Created Release: 3.5.1 (Sep 10, 2013)

$
0
0
version 3.5.1
==========================

- fixed html attributes rendering

- fixed loading animation rendering

- css improvements

version 3.5
==========================

- autosize for all popups ( can be turned off by calling in js awe.autoSize = false )

- added Parent, Paremeter extensions to Popup and PopupForm helpers

- trigger aweload event on load of Grid, AjaxDropdown, AjaxRadioList, AjaxCheckboxList, Lookup, MultiLookup

- Client Side API for the AjaxDropdown, CheckboxList, AjaxRadioList

- oparams for all apis (one time params, params are persisted for subsequent calls)

- Grid selection: Multiselect, Singleselect, Multicheck

- Grid RTL support

- Grid row model can be obtained by calling $('row selector').data('model')

- new grid api calls: get last request, last result

- Grid columns definition can be changed by setting the GridModel.Columns or GridParams.Columns before passing gridParmas to the GridModelbuilder

- SendColumns grid extension will set the columns definition in the GridParams

- added Order property to the column

- Numeric extension for the autocomplete

- added HtmlAttributes(IDictionary<string,object>) extension to all helpers with HtmlAttributes(object) extension

- underscores from html attributes names specified using the HtmlAttributes(object) are converted to dash

- new datepicker extensions: MinDate, MaxDate, default date, isRtl

Updated Wiki: Home

$
0
0
Project Description
It contains a rich set of helpers (controls) that you can use to build highly responsive and interactive Ajax-enabled Web applications. These helpers include Autocomplete, AjaxDropdown, Lookup, MultiLookup, AjaxForm, AjaxRadioList, AjaxCheckBoxList, DatePicker, Confirm Dialog, Popup Form and Pager

Project website: http://aspnetawesome.com

Demo App Live Link: http://demo.aspnetawesome.com

download demo app

ProDinner: http://prodinner.aspnetawesome.com

download prodinnerhttp://prodinner.codeplex.com

Learn http://aspnetawesome.com/learn

Main Video Tutorial: http://youtu.be/qDyhszMa1yA?hd=1

subjects covered: installation, AjaxDropdown, binding to Parents (cascade) , using Predefined Parameters, AjaxRadiolist, debugging in firebug

Lookup, MultiLookup and AjaxList Tutorial: http://youtu.be/gxb3z2VYJqg?hd=1

Popup, PopupForm and AjaxForm Tutorial: http://youtu.be/KcXUES-fN5s?hd=1

ASP.net MVC Tutorial: http://www.youtube.com/watch?v=fsfOFL4bXXA

Quick Demo:



Documentation for ASP.net MVC Awesome (version 1.9) Free version

Downloads


Recommendation: use firebug, and keep the console tab active
Video Tutorials
Lookup download watch: http://www.youtube.com/watch?v=OqkwM4P9zYo
AjaxDropdown download watch: http://www.youtube.com/watch?v=qW94rtkXPOQ
Lookup with Multiselect download watch: http://www.youtube.com/watch?v=NskjWx32lsk
Viewing all 345 articles
Browse latest View live


<script src="https://jsc.adskeeper.com/r/s/rssing.com.1596347.js" async> </script>