- 浏览: 242201 次
- 性别:
- 来自: 杭州
文章分类
- 全部博客 (173)
- ruby (38)
- rails (42)
- javascript (7)
- jquery (1)
- linux (15)
- design patterns (1)
- project management (6)
- IT (7)
- life (19)
- data structures and algorithm analysis (2)
- css (1)
- prototype (1)
- mysql (4)
- html (1)
- git (3)
- novels (1)
- c (1)
- Latex (13)
- erlang (1)
- 求职 (1)
- API (0)
- Shell (4)
- Rabbit MQ (1)
- 计算机基础 (1)
- svn (2)
- 疑问 (1)
最新评论
-
zhangyou1010:
回去倒立去,哈哈。
作为一个程序员,身体很重要! -
Hooopo:
Ruby MetaProgramming is all abo ...
Metaprogramming Ruby -
orcl_zhang:
yiqi1943 写道LZ现在上学还是工作呢工作好多年了。不过 ...
2011年 -
yiqi1943:
LZ现在上学还是工作呢
2011年 -
tjcjc:
query cache
就是一个简单的hash
key就是sq ...
Rails sql延迟加载和自带缓存
http://www.iteye.com/problems/35097
以前问的一个问题,今天遇到一个同样的情况,解决了.把代码贴出来,纪念下.
解决起来其实也是比较简单的,用后台来增加auto_complete的partial,动态生成一个id,每个id不同就可以.
controller
help
js
html
_purchase_tax
以前问的一个问题,今天遇到一个同样的情况,解决了.把代码贴出来,纪念下.
解决起来其实也是比较简单的,用后台来增加auto_complete的partial,动态生成一个id,每个id不同就可以.
controller
# add_purchase_tax,增加purchase_tax def add_purchase_tax @purchase_order_marketing = PurchaseOrderMarketing.find_by_id(params[:purchase_order_marketing_id]) render :update do |page| page.insert_html :before, :total, :partial => '/purchase_invoices/purchase_tax', :locals => {:purchase_tax => PurchaseTax.new(:category => 'NewTax',:add => 'plus'),:time => Time.now.to_f} end end
help
def fields_for_purchase_tax(purchase_tax,time, &block) if purchase_tax.new_record? fields_for("purchase_order_marketing[new_purchase_tax_attributes][#{time}]", purchase_tax, &block) else fields_for("purchase_order_marketing[existing_purchase_tax_attributes][]", purchase_tax, &block) end end
js
function add_purchase_tax(purchase_order_marketing_id){ new Ajax.Request('/purchase_taxes/add_purchase_tax',{ method: 'get', parameters: 'purchase_order_marketing_id='+purchase_order_marketing_id, evalScripts:true }) } function remove_tax(){ if($$('tr.newtax').size() > 0){ var old_value = Number($$('tr.newtax').last().down('span').innerHTML); $$('tr.newtax').last().remove(); var total = $('total_value'); total.innerHTML = Math.round((Number(total.innerHTML) - old_value)*100)/100; $$('input[id$=total]').first().value = total.innerHTML }; }
html
<% form_remote_for :purchase_order_marketing, :url => save_purchase_order_marketing_url(@purchase_order_marketing), :html => { :method => 'post' }, :complete => "Effect.Appear($('csuccess'));setTimeout(\"Effect.Fade($('csuccess'));\",2500);", :failure => "error" do |f| %> <%= render :partial => 'purchase_tax' ,:collection => @purchase_order_marketing.purchase_taxes %> <tr style="height:20px;"> <td> <input type="button" value="Add" onclick="add_purchase_tax(<%= @purchase_order_marketing.id %>);"/> <input type="button" value="Remove" onclick="remove_tax();"/> </td>
_purchase_tax
<% time ||= Time.now.to_f %> <% fields_for_purchase_tax(purchase_tax,time) do |purchase_tax_form| %> <% prefix = purchase_tax.new_record? ? "new_#{time}" : "existing_#{purchase_tax.id}" %> <td class="tax"> Tax & Duties </td> <td> <%= purchase_tax_form.select :add,PurchaseTax.default_categories,{},{:onchange => 'change_tax(this);'} %> <%= auto_complete_for_client(prefix, "payee",nil,{:width => '70px',:source => PurchaseOrder.default_tax_duties,:fields => [:name],:onblur => 'change_purchase_tax(this);'}) %> <%= purchase_tax_form.text_field :rate,{:size => 3,:onchange => 'change_tax2(this);',:readonly => 'readonly'} %> % <%= purchase_tax_form.hidden_field :tax_duty_id %> <%= purchase_tax_form.hidden_field :tax_duty_name %> </td> <td> <span id="<%= prefix %>_span"><%= (@purchase_order_marketing.sub_total)*purchase_tax.rate/100 %></span> <%= @purchase_order_marketing.uom %> </td>
发表评论
-
calendar
2012-02-24 11:04 862http://fullcalendar.vinsol.com/ ... -
ActiveRecord::Dirty
2011-11-21 10:29 785引用Track unsaved attribute chang ... -
TinyTDS
2011-09-20 09:29 851tiny_tds https://github.com/ra ... -
pandoc-ruby
2011-09-11 11:50 1196https://github.com/alphabetum/p ... -
Rails: Calling render() outside your Controllers
2011-04-28 17:15 830From:http://blog.choonkeat.com/ ... -
为什么这样才能装上
2011-02-20 10:39 1040引用u2@u2-laptop:~$ sudo gem inst ... -
Rails的transaction
2011-01-07 18:36 3054今天同事问我关于rails transaction,如 ... -
Rails sql延迟加载和自带缓存
2010-12-30 01:11 1609color_lot_manuallies = color_lo ... -
关于rhtml
2010-12-23 00:26 866在视图里有这样一段代码 sorted_op_items = o ... -
will_paginate ajax
2010-11-26 13:21 908两种方法 一, @@pagination_options ... -
save > save!(转)
2010-11-19 19:57 749Thoughtbot folks have a great a ... -
USE INDEX with Active Record finders(转)
2010-11-18 22:07 887可以通过强制指定index的方法优化find MySQL do ... -
html转义
2010-11-17 23:03 951$("#contacts").html(& ... -
Rails HTTP Status Code to Symbol Mapping
2010-11-17 22:40 1620http状态码http://zh.wikipedia.org/ ... -
Scaling Rails很不错的视频
2010-09-29 18:10 819自从railscasts开始讲解rails3后就很久没看了。 ... -
ActionController源码(待续)
2010-09-20 15:14 1019/usr/local/lib/ruby/gems/1.8/ge ... -
rails源码ActionSupport(待续)
2010-08-31 16:59 928一些奇淫技巧 class Object # An ... -
rails 记录
2010-08-26 15:27 736代码里有这样一句 self.purchase_invoices ... -
用Array来实现OrderedHash
2010-08-18 14:29 911偶然发现电脑的角落里有这样的一段代码.功能是用Array实现的 ... -
rails源码ActiveSupport,待续
2010-08-18 14:10 878rails2.3.2 module ActiveSupport ...
相关推荐
"STM32CubeIDE_Auto_Complete.zip"这个压缩包很可能是为STM32CubeIDE提供代码自动补全功能的插件。在编程过程中,代码自动补全能提高开发效率,减少手动输入错误,帮助开发者快速找到和使用库函数。这个插件可能包含...
在编程和软件开发中,自动补全(Auto-Complete)是一项常用且重要的功能,它极大地提高了程序员的效率,减少了输入错误。本篇文章将深入探讨自动补全的实现原理,并结合源码分析,帮助读者理解其内部工作机制。 ...
android:id="@+id/auto_complete_text_view" android:layout_width="match_parent" android:layout_height="wrap_content" android:completionThreshold="2" /> ``` 2. **数据源** AutoCompleteTextView需要...
标题中的“auto complete”指的是自动补全功能,这是一种常见的用户界面特性,常见于搜索框、输入字段等,能够根据用户输入的字符预测并提供可能的完成选项,提高输入效率。通常,这种功能是通过匹配历史记录、...
AutoCompleteTextView autoCompleteTextView = findViewById(R.id.auto_complete_text_view); autoCompleteTextView.setAdapter(adapter); ``` `ArrayAdapter`用于将数据源转换为适配器,以便`AutoCompleteTextView...
"auto_complete_delay": 100, "tab_size": 4, "translate_tabs_to_spaces": true, "detect_indentation": true, } ``` 这将开启自动完成,设置缩进为4个空格,并检测已有文件的缩进方式。 最后,别忘了设置...
AutoCompleteTextView autoCompleteTextView = findViewById(R.id.auto_complete_text_view); autoCompleteTextView.setAdapter(adapter); ``` 4. **监听选择事件**:为了将选定的城市显示在`TextView`中,我们需要...
语言:English 在Evernote或Dropbox Paper中以英语或西班牙语获取自动建议...因此,没有数据被收集现在存在的错误:-在段落之间书写,并通过按ENTER键使用建议框中的第一个单词建议,将在光标和下一个段落之间增加一行。
android:id="@+id/auto_complete_text_view" android:layout_width="match_parent" android:layout_height="wrap_content" android:hint="请输入关键词"/> ``` 在XML布局文件中,我们可以设置它的宽度、高度、...
20. `cat166_animation_complete_callback_int()`: 动画完成回调内部处理。 21. `gdi_anim_callback_timer()`: 动画回调定时器。 22. `TimerCallBack()`: 定时器回调。 23. `MMI_task()`: MTK任务管理。 #### 五、...
AutoCompleteTextView textView = findViewById(R.id.auto_complete_text_view); textView.setAdapter(adapter); ``` ### 3. 自定义匹配逻辑 默认情况下,AutoCompleteTextView会在用户输入三个字符后触发匹配。你...
6. **动画与交互**:在HTML5环境中,可能还支持多边形的动态行为,如旋转、缩放和动画效果,甚至可以实现用户交互。 7. **网格操作**:提供对多边形网格的整体操作,如合并、拆分、剪切等。 8. **视图控制**:多...
android:id="@+id/auto_complete_text_view" android:layout_width="match_parent" android:layout_height="wrap_content" android:completionThreshold="1" /> ``` `completionThreshold`属性定义了用户输入...
android:id="@+id/auto_complete_text_view" android:layout_width="match_parent" android:layout_height="wrap_content" android:completionThreshold="2" /> ``` 2. 设置适配器: 在Java代码中,你需要创建...
AutoCompleteTextView autoCompleteTextView = findViewById(R.id.auto_complete_text_view); autoCompleteTextView.setAdapter(adapter); ``` 6. **设置触发阈值**: 可以通过`setThreshold()`方法设置触发下拉...
8. **原子浮点数操作(Atomic Float Operations)**:增加了对浮点数的原子操作,使得在并发环境中处理浮点数更加安全。 9. **新库**:如`<bit>`库提供了位操作函数,`<format>`库提供了格式化输出,`<ranges>`库...
AutoCompleteTextView autoCompleteTextView = findViewById(R.id.auto_complete_text_view); ContactAdapter mContactAdapter = new ContactAdapter(this, null); autoCompleteTextView.setAdapter(mContactAdapter...
3. **自动完成**:Sublime Text 3支持智能感知,可以设置`auto_complete`为`true`来启用自动完成功能。 4. **语法高亮**:通过设置`syntax`属性,可以指定默认的语法高亮模式,这对于多语言开发非常有用。 5. **...
27. aspirations.complete_current_milestone:直接完成当前抱负 这个秘籍可以让小人直接完成当前抱负,让小人更加健康和快乐。 28. debug.enable_woohoo [true|false]:个人猜测是可以在 Debug 模式下和人嘿咻 ...