Ir para conteúdo

Arquivado

Este tópico foi arquivado e está fechado para novas respostas.

Rafael Tejeda

Problema com bootstrap modal com repeat

Recommended Posts

Olá pessoal eu estou usando o bootstrap da globo na minha aplicação web, colequei ele dentro de um repeat para poder visualizar noticias, o problema é quando clico para ver o modal no repeat ele sempre mostra o mesmo registro o primeiro que eu clicar, e quando eu fecho ele, ele não abre mais, ele começa a carregar e fecha sozinho alguém pode me dar uma ajuda.

Compartilhar este post


Link para o post
Compartilhar em outros sites

Segue o código no .net:

 

 Protected Sub Page_Load(ByVal sender As Object, ByVal e As System.EventArgs) Handles Me.Load                  If Not IsPostBack Then           carregaReceita()        End If            End Sub    Protected Sub rp_receitas_ItemDataBound(ByVal sender As Object, ByVal e As System.Web.UI.WebControls.RepeaterItemEventArgs) Handles rp_receitas.ItemDataBound        '*** Recupera nivel ***'        Dim v_habilitado As String        Dim lt_habilitado As Literal = CType(e.Item.FindControl("lt_habilitado"), Literal)        If Not IsNothing(lt_habilitado) Then            v_habilitado = e.Item.DataItem("receita_habilitado")            If v_habilitado = "1" Then                lt_habilitado.Text = "Sim"            Else                lt_habilitado.Text = "não"            End If        End If        '*** Recupera Código ***'        Dim lbl_receitaID As Label = CType(e.Item.FindControl("lbl_receitaID"), Label)        If Not IsNothing(lbl_receitaID) Then            lbl_receitaID.Text = e.Item.DataItem("receita_id").ToString.PadLeft(5, "0"c)        End If        '*** Recupera Titulo ***'        Dim lbl_receitaTITULO As Label = CType(e.Item.FindControl("lbl_receitaTITULO"), Label)        If Not IsNothing(lbl_receitaTITULO) Then            lbl_receitaTITULO.Text = e.Item.DataItem("receita_titulo")        End If        '*** Recupera Data ***'        Dim lbl_receitaDATA As Label = CType(e.Item.FindControl("lbl_receitaDATA"), Label)        If Not IsNothing(lbl_receitaDATA) Then            lbl_receitaDATA.Text = Format(e.Item.DataItem("receita_cadastro"), "dd/MM") & " as " & Format(e.Item.DataItem("receita_cadastro"), "HH:mm")        End If        '*** Editar usuario icone ***'        Dim img_receitaFOTO As Image = CType(e.Item.FindControl("img_receitaFOTO"), Image)        If Not IsNothing(img_receitaFOTO) Then                img_receitaFOTO.ImageUrl = "../../visual/uploads/public/imagens/receitas/" & e.Item.DataItem("receita_foto")        End If        '*** Recupera Titulo ***'        Dim lk_receitaVer As HyperLink = CType(e.Item.FindControl("lk_receitaVer"), HyperLink)        If Not IsNothing(lk_receitaVer) Then            lk_receitaVer.NavigateUrl = "ver.aspx?v=" & e.Item.DataItem("receita_id").ToString        End If        '*** Editar usuario icone ***'        Dim img_editarRECEITA As ImageButton = CType(e.Item.FindControl("img_editarRECEITA"), ImageButton)        If Not IsNothing(img_editarRECEITA) Then            img_editarRECEITA.ImageUrl = "../../visual/imagens/geral/ico-editar.png"            img_editarRECEITA.PostBackUrl = "./Editar.aspx?id=" & e.Item.DataItem("receita_id")            img_editarRECEITA.ToolTip = "Editar?"        End If        '*** Apagar usuario icone ***'        Dim img_apagarRECEITA As ImageButton = CType(e.Item.FindControl("img_apagarRECEITA"), ImageButton)        If Not IsNothing(img_apagarRECEITA) Then            img_apagarRECEITA.ImageUrl = "../../visual/imagens/geral/ico-lixeira-cheia.png"            img_apagarRECEITA.Attributes.Add("OnClick", "return confirm('Deseja realmente apagar?');")            img_apagarRECEITA.ToolTip = "Apagar?"        End If        '*** Apagar usuario icone ***'        Dim img_receitaVER As Image = CType(e.Item.FindControl("img_receitaVER"), Image)        If Not IsNothing(img_receitaVER) Then            img_receitaVER.ImageUrl = "../../visual/imagens/geral/ico-ver.png"            img_receitaVER.ToolTip = "Visualizar receita?"        End If    End Sub

aqui esta o link demostrando o problema.

 

obrigado pessoal por me ajudarem

 

 

alguém ? :mellow:

Compartilhar este post


Link para o post
Compartilhar em outros sites

×

Informação importante

Ao usar o fórum, você concorda com nossos Termos e condições.