Hello, I am interested in using your library but does your library support bootstrap themes without having to heavily customize the css ?
↧
New Post: Bootstrap styling
↧
New Post: Bootstrap styling
bootstrap has one line of css which conflicts with most of the third party libraries (box sizing) http://getbootstrap.com/getting-started/#third-parties
if you use bootstrap you'll have to modify the Awesome css a bit, (2 ~ 3 lines)
if you use bootstrap you'll have to modify the Awesome css a bit, (2 ~ 3 lines)
↧
↧
New Post: Bootstrap styling
That's great. Aside from the mentioned issue above. Do you have an example of how to override the theme of the controls to look at the bootstrap theme in the example project?
↧
New Post: Bootstrap styling
↧
New Post: Bootstrap styling
Great thanks. Sorry if I"m asking dumb questions. are you wanting me to just add this as the last style sheet in your demo project to convert to bootstrap or is this a template I will need to pull over styles from bootstrap to override the standard theme?
↧
↧
New Post: Bootstrap styling
in the demo app replace the Content/Themes/bui/AwesomeMvc.css content with the css provided, run the demo app select bui theme from the dropdown, refresh the page
↧
New Post: Bug report: you are missing a colon in Awesome.css
padding 0 instead of padding: 0
↧
New Post: Bug report: you are missing a colon in Awesome.css
there is a few AwesomeMvc.css files (one for each theme), which one has the problem ? line nr as well please
↧
Created Unassigned: Code First SetIntitalizer [1694]
Hi,
I would like to Create Database If Model Changes. Is this already possible with the template?
For example,
Database.SetInitializer(new DropCreateDatabaseIfModelChanges<DbContext>());
I would also like to seed etc.
I would like to Create Database If Model Changes. Is this already possible with the template?
For example,
Database.SetInitializer(new DropCreateDatabaseIfModelChanges<DbContext>());
I would also like to seed etc.
↧
↧
Created Unassigned: Code First SetIntitalizer [1695]
Hi,
I would like to Create Database If Model Changes. Is this already possible with the template?
For example,
Database.SetInitializer(new DropCreateDatabaseIfModelChanges<DbContext>());
I would also like to seed etc.
I would like to Create Database If Model Changes. Is this already possible with the template?
For example,
Database.SetInitializer(new DropCreateDatabaseIfModelChanges<DbContext>());
I would also like to seed etc.
↧
Closed Unassigned: Code First SetIntitalizer [1695]
Hi,
I would like to Create Database If Model Changes. Is this already possible with the template?
For example,
Database.SetInitializer(new DropCreateDatabaseIfModelChanges<DbContext>());
I would also like to seed etc.
Comments: duplicate
I would like to Create Database If Model Changes. Is this already possible with the template?
For example,
Database.SetInitializer(new DropCreateDatabaseIfModelChanges<DbContext>());
I would also like to seed etc.
Comments: duplicate
↧
Closed Unassigned: Code First SetIntitalizer [1694]
Hi,
I would like to Create Database If Model Changes. Is this already possible with the template?
For example,
Database.SetInitializer(new DropCreateDatabaseIfModelChanges<DbContext>());
I would also like to seed etc.
Comments: unrelated to awesome library,
maybe you refer to the prodinner demo, that's on separate project prodinner.codeplex.com, anyway if you propose a feature please add a dicussion
I would like to Create Database If Model Changes. Is this already possible with the template?
For example,
Database.SetInitializer(new DropCreateDatabaseIfModelChanges<DbContext>());
I would also like to seed etc.
Comments: unrelated to awesome library,
maybe you refer to the prodinner demo, that's on separate project prodinner.codeplex.com, anyway if you propose a feature please add a dicussion
↧
New Post: How to Show Grid in a Popup
Asp.net MVC , could any one tell me how to show the grid in popup ???
↧
↧
Created Unassigned: When Show Grid in popup Some controls stop working [1714]
I use a JTable Grid in a MVC index page and awesome popup contains awesome grid with grouped data .
when i opened the popup the awesome grid show successfully but after closing it the Jtable grid search button stop working .
when i opened the popup the awesome grid show successfully but after closing it the Jtable grid search button stop working .
↧
New Post: How to Show Grid in a Popup
you need an action that returns a view with a grid in it,
and after that you can declare a popup that has that action as url
same as here: http://demo.aspnetawesome.com/PopupDemo (Popup with content requested via ajax)
<%:Html.Awe().PopupActionLink().Name("p2")
and after that you can declare a popup that has that action as url
same as here: http://demo.aspnetawesome.com/PopupDemo (Popup with content requested via ajax)
<%:Html.Awe().PopupActionLink().Name("p2")
.Url(Url.Action("Meals"))
.LinkText("Open Popup")
.Width(500)
.Height(450)%>
except in that example there's an ajaxlist in that view↧
Closed Unassigned: When Show Grid in popup Some controls stop working [1714]
I use a JTable Grid in a MVC index page and awesome popup contains awesome grid with grouped data .
when i opened the popup the awesome grid show successfully but after closing it the Jtable grid search button stop working .
Comments: this should be a dicussion, it's not a awesome helpers bug
when i opened the popup the awesome grid show successfully but after closing it the Jtable grid search button stop working .
Comments: this should be a dicussion, it's not a awesome helpers bug
↧
New Post: multiple pop ups on top of each other
Hi,
Im trying to open two pop ups on top of each other...
(Url.Awe().PopupFormAction().Url(Url.Action("Edit", new { entity = ".entity." })).Success("refreshGrid")
and then
onclick="@(Url.Awe().PopupFormAction().Url(Url.Action("LookupGrid")).Success("lookupInGridConfirmClicked").Modal(true))" my problem is that when the second popup opens the first one closes (disappears)
can you please assist?
Regards,
Shachar
Im trying to open two pop ups on top of each other...
(Url.Awe().PopupFormAction().Url(Url.Action("Edit", new { entity = ".entity." })).Success("refreshGrid")
and then
onclick="@(Url.Awe().PopupFormAction().Url(Url.Action("LookupGrid")).Success("lookupInGridConfirmClicked").Modal(true))" my problem is that when the second popup opens the first one closes (disappears)
can you please assist?
Regards,
Shachar
↧
↧
New Post: multiple pop ups on top of each other
Giving the pop up a name solved the issue
↧
New Post: multiple pop ups on top of each other
When there is more Popup helpers declared that have the same .Name(string), they will share the same popup window, so opening one will close the other.
http://demo.aspnetawesome.com/PopupDemo
if the name isn't specified a default name is used (awesomePopup)
http://demo.aspnetawesome.com/PopupDemo
if the name isn't specified a default name is used (awesomePopup)
↧
Released: 4.0 (May 03, 2014)
version 4.0
==========================
- added InitPopup, InitPopupForm helpers, open initialized popups using awe.open(name, params)
- added Tag or Tags for all helpers, usable in mod code
- added popup aweclose, aweresize events
- popups have api accessible via .data('api'), with methods open, close and destroy
- all popups have .awe-popup class
- popups can be grouped using .Group(string), only 1 popup in the same group can exist at the same time
- added awebeginload event for grid, ajaxdropdown, ajaxradiolist and ajaxcheckboxlist
- datepicker won't focus it's textbox when clicking it's open button
- modding for ajaxradiolist, ajaxcheckboxlist
- css improvements, easier integration with bootstrap
- added prefix awe1_ to all persistence keys, can be changed by changing awe.ppk
- added ParameterFunc to grid, ajaxlist
- parent binding improvements
- popupform execute success function first and close after, success function has the popup as a parameter and can use the api to close it earlier
- strongly typed parentId generation same as for id
- bootstrap popup mod
- inline popup mod
- context object first parameter of awe.err
- fixed datepicker client validation
version 3.5.3
==========================
- support for mvc5
version 3.5.2
==========================
- fix for setting single value to multivalue controls
- datepicker min max date offset fix
- html encoding for keys fix
- enable Column.ClientFormatFunc to be a function call that will return a function
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
version 3.0
==========================
- added Grid helper
- added textbox helper
- added Client Side API for AjaxList
- removed .SearchButton from AjaxList
- AjaxForm and Confirm helpers have been merged into the Form helper
- optimized html output for AjaxDropdown, AjaxList, Autocomplete
- added XML Documentation
going from 2.0 to 3.0
to change from AjaxForm to Form you just have to replace Html.Awe().AjaxForm to Hmtl.Awe().Form
==================
Html.Confirm can be replaced with Html.Form
so instead of:
Html.Awe().Confirm().ConfirmClass("myconfirm")
<form ...>
...
<input type="submit" value="submit" class="myconfirm"/>
</form>
you do:
Html.Awe().Form().FormClass("myconfirm").Confirm(true)
(by default the form will be submited via ajax, if you don't need that add .UseAjax(false))
<form ... class="myconfirm">
...
<input type="submit" value="submit"/>
</form>
===================
AjaxList's 2.0 .SearchButton(string) was setting the id of a button that will trigger the AjaxList to search,
with 3.0 you can trigger the search with the client side api by doing $('#ajaxListId').data('api').load();
or you may not need a search button at all, because changing a parent element will trigger search on the ajaxlist, you can disable the automatic triggering of search when changing the value of a parent element by calling .LoadOnParentChange(false)
==========================
- added InitPopup, InitPopupForm helpers, open initialized popups using awe.open(name, params)
- added Tag or Tags for all helpers, usable in mod code
- added popup aweclose, aweresize events
- popups have api accessible via .data('api'), with methods open, close and destroy
- all popups have .awe-popup class
- popups can be grouped using .Group(string), only 1 popup in the same group can exist at the same time
- added awebeginload event for grid, ajaxdropdown, ajaxradiolist and ajaxcheckboxlist
- datepicker won't focus it's textbox when clicking it's open button
- modding for ajaxradiolist, ajaxcheckboxlist
- css improvements, easier integration with bootstrap
- added prefix awe1_ to all persistence keys, can be changed by changing awe.ppk
- added ParameterFunc to grid, ajaxlist
- parent binding improvements
- popupform execute success function first and close after, success function has the popup as a parameter and can use the api to close it earlier
- strongly typed parentId generation same as for id
- bootstrap popup mod
- inline popup mod
- context object first parameter of awe.err
- fixed datepicker client validation
version 3.5.3
==========================
- support for mvc5
version 3.5.2
==========================
- fix for setting single value to multivalue controls
- datepicker min max date offset fix
- html encoding for keys fix
- enable Column.ClientFormatFunc to be a function call that will return a function
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
version 3.0
==========================
- added Grid helper
- added textbox helper
- added Client Side API for AjaxList
- removed .SearchButton from AjaxList
- AjaxForm and Confirm helpers have been merged into the Form helper
- optimized html output for AjaxDropdown, AjaxList, Autocomplete
- added XML Documentation
going from 2.0 to 3.0
to change from AjaxForm to Form you just have to replace Html.Awe().AjaxForm to Hmtl.Awe().Form
==================
Html.Confirm can be replaced with Html.Form
so instead of:
Html.Awe().Confirm().ConfirmClass("myconfirm")
<form ...>
...
<input type="submit" value="submit" class="myconfirm"/>
</form>
you do:
Html.Awe().Form().FormClass("myconfirm").Confirm(true)
(by default the form will be submited via ajax, if you don't need that add .UseAjax(false))
<form ... class="myconfirm">
...
<input type="submit" value="submit"/>
</form>
===================
AjaxList's 2.0 .SearchButton(string) was setting the id of a button that will trigger the AjaxList to search,
with 3.0 you can trigger the search with the client side api by doing $('#ajaxListId').data('api').load();
or you may not need a search button at all, because changing a parent element will trigger search on the ajaxlist, you can disable the automatic triggering of search when changing the value of a parent element by calling .LoadOnParentChange(false)
↧