Giter VIP home page Giter VIP logo

Comments (4)

sgjsakura avatar sgjsakura commented on May 28, 2024

@yujiajunbmj Hi, thank you for your feedback, however there's is no built-in setting named "tagname" and thus I cannot fully catch yout target. Could you give a short sample in order to demostrate your problem?

Many thanks and waiting for you kindly reply.

from aspnetcore.

yujiajunbmj avatar yujiajunbmj commented on May 28, 2024

page
<pager setting-tagname="C#" />
global
public void ConfigureServices(IServiceCollection services) { services.AddBootstrapPagerGenerator(options => { // Use default pager options. options.ConfigureDefault(); }); }
action
`public IActionResult DataPager(string tagname,int page)
{

} `
The tagname does not get the parameter value
I don't know if I have any other configuration wrong?
Thank you for your reply.

from aspnetcore.

sgjsakura avatar sgjsakura commented on May 28, 2024

@yujiajunbmj HI, thank you for your reply. It seems that you are trying to customize the generated link URL format (Actually a custom action argument is just a part of URL query string). In order to do this, currently you should provide a custom link generator, a sample may like the following code:

<pager setting-item-default-link="PagerItemLinkGenerators.Custom((int page) => Url.Action("MyAction", "MyController", new { page = page, tagname = "C#" }))" />

Note that the link generator is just a method instance with type like Func<int, string> where the argument is the page number and the result is the final link URL. You can use any other custom delegated methdo to generate your link as you wish.

Hope this helps, and if you have any further quesion, please feel free to reply here.

from aspnetcore.

yujiajunbmj avatar yujiajunbmj commented on May 28, 2024

Thank you very much for your reply. My problem has been solved smoothly

from aspnetcore.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.