Base solution for your next web application

Activities of "hugol"

Answer

Please you don't need to apologise :)

A breakpoint configuration would allow certain columns to hide at different resolutions. For example, if the grid had an attribute, let's say "data-hide" and embedded breakpoints (or allowed custom to be defined) we could do something like:

<thead>
    <tr>
        <th>Name - Column always shown</th>
        <th data-hide="phone,tablet">Column hidden on phone and tablet</th>
        <th data-hide="all">Column always hidden</th>
    </tr>
</thead>

Another example is located at: [http://v4-alpha.getbootstrap.com/layout/overview/#responsive-breakpoints])

The main idea behind this is to give the developer the ability to select which columns are displayed in specific resolutions.

Thanks Hugo

I was able to sort one error but I'm still blocked by the first one.

The error "An Error has occurred! Error detail not sent by the server." was related to the fact that I was trying to use the previous database. After creating a new database and running the code migrations I was able to login, but the "reset password" that we get after the first login for the admin failed. Please see the attached file.

This is related with the error: Unhandled exception at line 716, column 5 in <a class="postlink" href="http://localhost:6240/AbpScripts/GetScripts">http://localhost:6240/AbpScripts/GetScripts</a> 0x800a138f - JavaScript runtime error: Unable to get property 'antiForgery' of undefined or null reference

Side note: It's being very hard to develop an web app and maintain the aspnet-zero code updated with the fixes and the new features. Fortunately this is just a test app but I don't see how can I maintain this in a real live environment. I would love to be able to do it in a more straightforward way since I really like your project. I may be missing something.

Thanks Hugo

Hi there,

I've realised that since June the aspnet-zero project had so many changes that would be easier to recreate the "playground" project from scratch. After downloading a new project again I've had the following issues:

Project compiled but doesn't run with the error: "Could not load file or assembly 'System.Web.Mvc, Version=5.1.0.0..."

To fix this I had to comment the following entry in the web.config


and add

<assemblyIdentity name="System.Web.Mvc" publicKeyToken="31bf3856ad364e35" />
        <bindingRedirect oldVersion="0.0.0.0-5.2.3.0" newVersion="5.2.3.0" />

After solving this problem I get the following error message in a window: Unhandled exception at line 716, column 5 in <a class="postlink" href="http://localhost:6240/AbpScripts/GetScripts">http://localhost:6240/AbpScripts/GetScripts</a> 0x800a138f - JavaScript runtime error: Unable to get property 'antiForgery' of undefined or null reference

I can "break" or press "continue" the code execution but if I press "continue" I'm unable to login and I get the following error: "An Error has occurred! Error detail not sent by the server."

Any suggestion?

Thank you

It seems that I was looking to the wrong place and I should be looking to [https://github.com/aspnetzero/aspnet-zero/tree/dev/src]).

After checking the differences and copying the new code everything is working.

Thank you

Hello,

After upgrading to the latest version, I'm unable to compile the Mood2Success.Test_PlaygroundPrj.Web project. I'm getting the error:
Error CS0246 The type or namespace name 'MvcAjaxResponse' could not be found[/quote] (are you missing a using directive or an assembly reference?) Mood2Success.Test_PlaygroundPrj.Web C:_Projects\Test_PlaygroundPrj\Mood2Success.Test_PlaygroundPrj.Web\Controllers\ProfileController.cs 163 Active

I've noticed that at this location (Module Zero Template) the controllers no longer exist and additionally I realised that the AccountController was changed and some other are news: [https://github.com/aspnetboilerplate/module-zero-template/tree/master/src/AbpCompanyName.AbpProjectName.WebMpa/Controllers])

What's the best way to upgrade a project? I followed the instructions at [https://aspnetzero.com/Faq#FaqAccordionPanels_5]), I also checked the github and the forums searching for anything related with "ProfileController" but and I can't find anything.

Any suggestion? Thank you

Answer

Hi hikalkan,

Thank you for the fixes and the tips. So the answer for the breakpoints question is: it doesn't support breakpoints. Right? No worries.

I did play a little bit more with the Jtable grid yesterday in some mobiles and tablets and I have one question, is it possible to have the horizontal bar always on? When the Jtable is being displayed on a mobile the users don't realize they can scroll to the right to see more columns.

About switching to another grid, the footable supports ajax requests so I think it's doable. Is there any documentation or example that I should check before starting doing this?

Thank you once more for all the help and keep up your brilliant work. Cheers Hugo

<cite>hikalkan: </cite> Hi,

For your localization problem reports, we should check them and we can fix. I created an issue for this: <a class="postlink" href="https://github.com/aspnetzero/aspnet-zero/issues/337">https://github.com/aspnetzero/aspnet-zero/issues/337</a>

I've no much time to work on jtable nowadays and I've no time plan for it yet. But since we are using it, we fix problems even we can not add new features yet.

Switching to another grid is not hard if this new grid supports AJAX data loading.

Thank you very much for the help ismcagdas.

Cheers Hugo

Question

Hi there,

I've update my project to the lastest version using the following commands:

get-project -all | get-package | ?{ $_.Id -like 'Abp*' } | update-package
Install-Package Abp.Zero
Install-Package Abp.Zero.Ldap
Install-Package Abp.Zero.EntityFramework
Install-Package Abp.Zero.NHibernate

and I'm now getting the following error: Severity Code Description Project File Line Suppression State Error CS0246 The type or namespace name 'IValidate' could not be found (are you missing a using directive or an assembly reference?) Mood2Success.Test_PlaygroundPrj.Application C:_Projects\Test_PlaygroundPrj\Mood2Success.Test_PlaygroundPrj.Application\Configuration\Host\Dto\EmailSettingsEditDto.cs 5 Active

The project reference is: Assembly Abp C:_Projects\Test_PlaygroundPrj\packages\Abp.0.12.0.0\lib\net452\Abp.dll Assembly Abp.Zero C:_Projects\Test_PlaygroundPrj\packages\Abp.Zero.0.12.0.0\lib\net452\Abp.Zero.dll

Do you know what do I need to do to sort this problem?

Kind regards, Hugo

Question

Hello,

I've been playing with a project in order to evaluate the ASP.Net Boilerplate potential for new projects and I have the following doubts related to the Jtable:

Is it possible to setup breakpoints? I would like to auto-hide some columns in certain situations.

The grids paging information is currently being displayed using the default language specified in the "Region and Language settings" instead of the selected localised language? Is there a fix for this?

The grids are displaying "no results to show" while still loading. Is there a way to change this? (additionally this message is also being displayed in the windows language)

In a previous post (about 9 months ago) you mentioned that you couldn't provide a date but you were thinking to replace the JqeuryUI with boostrap. Any plan at this stage?

How hard would be to replace the Jtable with another grid? Is this feasible? I've been using the FooTable jQuery plugin in other projects and I was thinking in replacing the JTable.

Kind regards, Hugo

Showing 21 to 29 of 29 entries