我的<% if @conversation.errors.any? # or whatever condition you want to show a popup for %>
// put your javascript popup code here
alert('Errors happened!');
<% else %>
// this is how you do a redirect using javascript:
window.location.href = "<%= conversation_path( @conversation ) %>";
<% end %>
包含fragment
。当我按下listview
的{{1}}位置时,我想打开另一个0
但我无法调用它。我认为listview
存在问题,但我不确定。
以下是来自fragment
的代码,其中managerFragment
位于Frm_principal
我想致电listview
0
这是我要打电话的frm cliente课程
frmCliente
答案 0 :(得分:1)
我想你忘了提交交易。
在onCLickListener
Frm_Cliente newFragment = new Frm_Cliente();
FragmentTransaction asd = getActivity().getSupportFragmentManager().beginTransaction();
asd.replace(R.layout.layout_frm_principal,newFragment)
ads.commit();