Code Monkey home page Code Monkey logo

Comments (13)

Nerian avatar Nerian commented on May 24, 2024 1

If I remember correctly, it was the name of the span:

<td><span data-xedit='true'>03 Aug 2014</span></td>

$.fn.editable.defaults.mode = 'inline';

$("#gradebook").bootgrid({
  ...   
}).on("loaded.rs.jquery.bootgrid", function (e){
  $('[data-xedit]').each(function(entry){    
    entry.editable({
      type: 'text',
      name: 'score',
      url: "...someurl",      
      title: 'Enter score'
    });
  })
 });

from jquery-bootgrid.

rstaib avatar rstaib commented on May 24, 2024

Yes, it should at a first glance. You have to use formatter (see here) to create your anchor tags and intialize x-editable after data is loaded (see event load.rs.jquery.bootgrid here).

from jquery-bootgrid.

appel avatar appel commented on May 24, 2024

Thanks for the pointers! If I get it working I'll post a jsfiddle here.

from jquery-bootgrid.

Nerian avatar Nerian commented on May 24, 2024

@appel Did you get this to work?

from jquery-bootgrid.

appel avatar appel commented on May 24, 2024

Unfortunately, not yet. And then work got in the way... :( If I do get it working in the future I'll post it here.

from jquery-bootgrid.

Nerian avatar Nerian commented on May 24, 2024

I got it working like this:

$.fn.editable.defaults.mode = 'inline';

$("#gradebook").bootgrid({
  ...   
}).on("loaded.rs.jquery.bootgrid", function (e){
  $('[data-xedit]').each(function(entry){    
    entry.editable({
      type: 'text',
      name: 'score',
      url: "...someurl",      
      title: 'Enter score'
    });
  })
 });

from jquery-bootgrid.

appel avatar appel commented on May 24, 2024

@Nerian wow, that's awesome! Would you mind setting up a jsfiddle by forking this as a base?

from jquery-bootgrid.

agrezev avatar agrezev commented on May 24, 2024

@Nerian what is '[data-xedit]' in your code? Name of <tr> tag?
If it possible give example of marking

from jquery-bootgrid.

daneshqureshi avatar daneshqureshi commented on May 24, 2024

@Nerian Is this working now?

from jquery-bootgrid.

KamelKaouech avatar KamelKaouech commented on May 24, 2024

@Nerian Can you please post the x-editable bootgrid example in jsfiddle? Many thanks in anticipation

from jquery-bootgrid.

vmpande avatar vmpande commented on May 24, 2024

Hey, would anyone be kind enough to post the answer with jsfiddle! Would be really helpful. Thanks!

from jquery-bootgrid.

Nerian avatar Nerian commented on May 24, 2024

Sorry, I no longer have the code. It was 3 years ago.

from jquery-bootgrid.

Vickthor27 avatar Vickthor27 commented on May 24, 2024

1.- Add a class over the HTML

<th data-column-id="comentario" data-width="70%" data-css-class="student_name"> COMENTARIOS </th>

2.- Change the class property 'contenteditable' in the onloaded function.
.on("loaded.rs.jquery.bootgrid", function() { grid.find(".student_name").on("click", function(e){ $('.student_name').attr("contenteditable", "true"); });

from jquery-bootgrid.

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.